HB_IsObject()
Tests if the value returned by an expression is an object.
Syntax
HB_IsObject( <expression> ) --> lIsObject
Arguments
<expression> an expression of any data type
Return
.T. (true) if the value returned by <expression> is an object, otherwise .F. (false) is returned.
Description
Function HB_IsObject() is used to test if a variable contains an object or if the result of an expression is of data type Object. The function can be used as a replacement for the expression: Valtype(<expression>)==”O”.
Seealso
HB_IsArray(), HB_IsBlock(), HB_IsByRef(), HB_IsDate(), HB_IsLogical(), HB_IsHash(), HB_IsMemo(), HB_IsNIL(), HB_IsNull(), HB_IsNumeric(), HB_IsPointer(), HB_IsString(), Type(), Valtype()