Allows a pointer to be tested for Null. Is often used to check for the end of a list of data items.
bIsNull = ptr:IsNull()
pi = fhNewItemPtr() -- declare pointer pi:MoveToFirstRecord('INDI') -- set pi to to the first Individual record while not pi:IsNull() do -- Process INDI data pi:MoveNext() end