CheckValue Method
Class: _DBC_Connector
This method return if value valid.
Note
This method is called automaticaly from _DBC::CheckValue() if _DBC::oConnector object defined.
=
Object.CheckValue
Parameter
liIDProp
Property ID
Type Integer
Direction Input
Property ID. For a list of properties, see _DBC::EnumProperty().
liType
Value type
Type Integer
Direction Input
Value type. For retrieving type value use method _DBC::GetValueType().
luValue
Value
Type Integer/String/Number/Boolean
Direction Input
Value.
Return value Boolean
If the value valid, the return value must be .T. .

If the value invalid the return value must be .F. .


See also
Expand/Collapse source code of procedure CheckValue Source Code
      LPARAMETERS liIDProp,liType,luValue
      * liIDProp   - Property ID
      * liType     - Value type
      * luValue    - Value


      * 1) check type
      * 2) check interval
      * 4) return .T. is value valid or .F. is invalid

      RETURN .T.