FormObject.helpField 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.
Returns 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.
Remarks
The following example shows how to use the helpField method.
str strHelp;
strHelp = this.helpField();