Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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();
}