Share via


DictField.tableid Method

Definition

Returns the ID of the table that contains the field.

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

Returns

The ID of the table that contains the field.

Remarks

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

DictField df; 
df = new DictField(tablenum(CustTable), fieldnum(CustTable, AccountNum)); 
if (df) 
{ 
    print df.tableid(); 
}

Applies to