DictField.tableid Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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();
}