DictTable.isBaseData Method
Indicates whether the table content is base data.
Syntax
public boolean isBaseData()
Run On
Called
Return Value
Type: boolean
true if the TableContents property in the AOT indicates that the table content is base data; otherwise, false.
Examples
The following example shows the retrieval of a value that indicates whether the table content is base data.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (dt)
{
print strfmt("isBaseData: %1", dt.isBaseData());
print strfmt("isDefaultData: %1", dt.isDefaultData());
}
See Also
Best Practices for Table Properties
DictTable.isDefaultData Method