Share via


DictTable.Titlefield2 Method

Definition

Overloads

Titlefield2()

Returns the ID of the field that represents the titleField2 property of the table.

Titlefield2(Boolean)
Titlefield2(Boolean, Boolean)

Titlefield2()

Returns the ID of the field that represents the titleField2 property of the table.

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

Returns

The ID of the field that represents the titleField2 property of the table.

Remarks

According to best practice guidelines, the titleField2 property represents the description of the records of the table.

The following example shows the retrieval of the ID of the field that is used for the titleField2 property of the table.

DictTable dt; 
DictField df; 
dt = new DictTable(tablenum(CustTable)); 
if (dt) 
{ 
    df = new DictField(tablenum(CustTable),dt.titleField2()); 
    if (df) 
    { 
        print df.name(); 
    } 
}

Applies to

Titlefield2(Boolean)

public:
 virtual int Titlefield2(bool fIncludeBase);
public virtual int Titlefield2 (bool fIncludeBase);
abstract member Titlefield2 : bool -> int
override this.Titlefield2 : bool -> int
Public Overridable Function Titlefield2 (fIncludeBase As Boolean) As Integer

Parameters

fIncludeBase
Boolean

Returns

Applies to

Titlefield2(Boolean, Boolean)

public:
 virtual int Titlefield2(bool fIncludeBase, bool fGetExtendedFieldId);
public virtual int Titlefield2 (bool fIncludeBase, bool fGetExtendedFieldId);
abstract member Titlefield2 : bool * bool -> int
override this.Titlefield2 : bool * bool -> int
Public Overridable Function Titlefield2 (fIncludeBase As Boolean, fGetExtendedFieldId As Boolean) As Integer

Parameters

fIncludeBase
Boolean
fGetExtendedFieldId
Boolean

Returns

Applies to