NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HelpProvider.SetHelpString

Specifies a Help string associated with a control.

[Visual Basic]
Overridable Public Sub SetHelpString( _
   ByVal ctl As RichControl, _
   ByVal helpString As String _
)
[C#]
public virtual void SetHelpString(
   RichControl ctl,
   string helpString
);
[C++]
public: virtual void SetHelpString(
   RichControl* ctl,
   String* helpString
);
[JScript]
public function SetHelpString(
   ctl : RichControl,
   helpString : String
);

Parameters

ctl
A RichControl that specifies the control with which to associate the Help string.
helpString
The Help string associated with the control.

Remarks

The help string that you specify in the helpString parameter is displayed in a pop-up window when the user clicks F1 while the specified control has focus.

See Also

HelpProvider Class | HelpProvider Members | System.WinForms Namespace | GetHelpTopic | GetHelpString | GetShowHelp | SetHelpTopic | SetShowHelp