DictTable.tableGroup Method

Returns the table group for a table.

Syntax

public TableGroup tableGroup()

Run On

Called

Return Value

Type: TableGroup Enumeration
A TableGroup value that represents the table group of the table.

Remarks

The return value corresponds to the TableGroup property of the table in the AOT.

Examples

The following example shows the retrieval of the table group of the table.

DictTable dt; 
 
dt = new DictTable(tablenum(CustTable)); 
 
if (dt) 
{ 
   print strfmt("Table Group: %1", dt.tableGroup()); 
}

See Also

DictTable Class

TableGroup Enumeration