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