Share via


FormControl.helpField Method

Definition

Retrieves the Help text for the control.

public:
 virtual System::String ^ helpField();
public virtual string helpField ();
abstract member helpField : unit -> string
override this.helpField : unit -> string
Public Overridable Function helpField () As String

Returns

The Help text for the control; an empty string if there is no Help text for the control.

Remarks

The helpField method cannot be used to set the value of the Help text. Use the helpText method to set the value of the Help text.

The following example shows how to use the helpField method.

str strHelp; 
strHelp = this.helpField();

Applies to