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.SetShowHelp

Specifies whether Help is displayed for a given control.

[Visual Basic]
Overridable Public Sub SetShowHelp( _
   ByVal ctl As RichControl, _
   ByVal value As Boolean _
)
[C#]
public virtual void SetShowHelp(
   RichControl ctl,
   bool value
);
[C++]
public: virtual void SetShowHelp(
   RichControl* ctl,
   bool value
);
[JScript]
public function SetShowHelp(
   ctl : RichControl,
   value : Boolean
);

Parameters

ctl
A RichControl that specifies the control for which Help is turned on or off.
value
true if Help displays for the control; otherwise, false.

Remarks

If you have previously called the SetHelpString or SetHelpTopic for the control specified in the ctl parameter, the HelpProvider object automatically displays Help for that control. To modify this behavior, call the SetShowHelp method, specifying false in the value parameter.

See Also

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