IsBaseType Method
Class: _DBC
This method return if type value is base type (implemented in VFP).
=
Object.IsBaseType
(liType)
Parameter
liType
Value type
Type Integer
Direction Input
Value type. For retrieving type value use method _DBC::GetValueType().
Return value Boolean
The return value is .T. if value type is base or .F. is not.


See also
Expand/Collapse source code of procedure IsBaseType Source Code
      LPARAMETERS liType
      * liType     - Value type


      RETURN INLIST(liType,;
          _DBC_ValueType_Unknown,;
          _DBC_ValueType_String,;
          _DBC_ValueType_Byte,;
          _DBC_ValueType_SI32R,;
          _DBC_ValueType_I32R,;
          _DBC_ValueType_Boolean)