This document is archived and information here might be outdated. Recommended version. |
Indicates if the value is valid given the field definition.
[Visual Basic .NET]
Public Function CheckValue ( _
ByVal Value As Object _
) As Boolean
[C#]
public bool CheckValue (
object Value
);
[C++]
HRESULT CheckValue(
VARIANT Value
);
[C++] Parameters Value [in]
Value is a parameter of type VARIANT
CheckValue tests whether the specified value is valid for the current field, based upon the field type. For example, CheckValue will verify if the supplied value corresponds to field type of Small Integer or if the value corresponds to a string value.
The value is not checked against any existing domain.