DictTable.enabled Method

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")); 
}

See Also

Reference

DictTable Class