functions

fhGetRecordTypeCount

Description

Returns the number of record types available.

Syntax

iTypeCount = fhGetRecordTypeCount()

Parameters

None

Returns

iTypeCount
integer: Number of available record types

Example

iCount = fhGetRecordTypeCount() -- Get Count of Record types
-- Loop through Record Types and display in a message box
for ii =1,iCount do  
   fhMessageBox(fhGetRecordTypeTag(ii))
end