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 a value that indicates whether the table is enabled.
Syntax
public boolean enabled()
Run On
Called
Return Value
Type: boolean
true if the table is enabled; otherwise, false.
Examples
The following example shows the retrieval of the value that indicates whether the table is enabled.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (dt)
{
print (strfmt("The table is %1.", dt.enabled() ? "enabled" : "not enabled"));
}