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.
Indicates whether the table contains default data.
Syntax
public boolean isDefaultData()
Run On
Called
Return Value
Type: boolean
true if the table contains default data; otherwise, false.
Examples
The following example shows the retrieval of a value that indicates whether the table contains default data.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (dt)
{
print strfmt("isDefaultData: %1", dt.isDefaultData());
}
See Also
Best Practices for Table Properties