Share via


DictRelation.table Method

Returns the table ID of the relation.

Syntax

public TableId table()

Run On

Called

Return Value

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

Examples

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

Dictionary dict; 
DictRelation dr; 
 
dict = new Dictionary(); 
dr = new DictRelation(dict.tableName2Id("CustTable")); 
 
print dr.table();

See Also

Reference

DictRelation Class