Share via


DictTable.Id Method

Definition

Returns the ID of the table.

public:
 virtual int Id();
public virtual int Id ();
abstract member Id : unit -> int
override this.Id : unit -> int
Public Overridable Function Id () As Integer

Returns

The ID of the table.

Remarks

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

Applies to