Share via


DictField.id Method

Definition

Returns the ID of the field.

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 field.

Remarks

The following example retrieves the ID of a field.

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

Applies to