DictField.helpDefined Method [AX 2012]

Returns the value of the help property for the field.

public str helpDefined()

Run On

Called

Return Value

Type: str
The value of the help property for the field.

Unlike the help method, the helpDefined method does not return the Help text of the extended data type if the field is based on an extended data type and has no Help text defined for it.

The following example shows retrieval of the defined Help text for the field.

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

Community Additions

ADD
Show: