Date Point

IsNull

Description

Returns true if a date point object is null.

Syntax

bIsNull = dp:IsNull()

Parameters

None

Return Value

bIsNull
boolean: true if the datepoint object is null.

Remarks

Example
dpDatePoint = fhNewDatePt()
if dpDatePoint:IsNull() then
	fhMessageBox('Date point is not set')
end