DictField.help 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.
Overloads
help(Int32) | |
help(Int32, Boolean) | |
help() |
Returns the Help text that is displayed for the field. |
help(Int32)
help(Int32, Boolean)
public:
virtual System::String ^ help(int _arrayIndex, bool _useInterfaceLanguage);
public virtual string help (int _arrayIndex, bool _useInterfaceLanguage);
abstract member help : int * bool -> string
override this.help : int * bool -> string
Public Overridable Function help (_arrayIndex As Integer, _useInterfaceLanguage As Boolean) As String
Parameters
- _arrayIndex
- Int32
A Boolean value that indicates whether to use the user interface language for the Help text; optional.
- _useInterfaceLanguage
- Boolean
A Boolean value that indicates whether to use the user interface language for the Help text; optional.
Returns
Applies to
help()
Returns the Help text that is displayed for the field.
public:
virtual System::String ^ help();
public virtual string help ();
abstract member help : unit -> string
override this.help : unit -> string
Public Overridable Function help () As String
Returns
The Help text or inherited Help text for the field.
Remarks
If no Help text is defined for the field, this method returns the Help text for the extended data type that is used for the field, if applicable. If an array entry is specified, this method returns the Help text for the array element.
The following example shows retrieval of the Help text for the field.
DictField df;
df = new DictField(tablenum(CustTable), fieldnum(CustTable, AccountNum));
if (df)
{
print df.help();
}