Returns true if the item is an attribute item (e.g. Occupation, Education etc). See also fhIsEvent and fhIsFact.
bResult = fhIsAttribute(ptr)
pi = fhNewItemPtr() pi:MoveToFirstRecord('INDI') pi:MoveTo(pi,'~.OCCU') if fhIsAttribute(pi) then fhMessageBox('Occupation exists and is an attribute') end