DictTable.isSystemTable Method
Indicates whether the table is a system table.
Syntax
public boolean isSystemTable()
Run On
Called
Return Value
Type: boolean
true if the table is a system table; otherwise, false.
Examples
The following example shows the retrieval of a value that indicates whether the table is a system table.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (dt)
{
print(strfmt("System table: %1", dt.isSystemTable()));
}