DictField.id Method
Returns the ID of the field.
Syntax
public FieldId id()
Run On
Called
Return Value
Type: FieldId Extended Data Type
The ID of the field.
Examples
The following example retrieves the ID of a field.
DictField df;
df = new DictField(tablenum(CustTable), fieldnum(CustTable, AccountNum));
if (df)
{
print df.id();
}