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