DictTable.id Method

Returns the ID of the table.

Syntax

public TableId id()

Run On

Called

Return Value

Type: TableId Extended Data Type
The ID of the table.

Examples

The following example shows the retrieval of the ID of a table.

DictTable dt; 
 
dt = new DictTable(tablenum(CustTable)); 
if (dt) 
{ 
    print (strfmt("The table ID is: %1", dt.id())); 
 
}

See Also

Reference

DictTable Class