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 base type of the field, such as string, real, integer, date, time, enum, or container.
Syntax
public Types baseType()
Run On
Called
Return Value
Type: Types Enumeration
A Types value that specifies the type of the field.
Examples
The following example shows the retrieval of the base type of a field.
DictField df;
df = new DictField(tablenum(CustTable), fieldnum(CustTable, AccountNum));
if (df)
{
print strfmt("The field type is %1.", df.baseType());
}