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

Retrieves a value indicating whether Help displays for the specified control.

[Visual Basic]
Overridable Public Function GetShowHelp( _
   ByVal ctl As RichControl _
) As Boolean
[C#]
public virtual bool GetShowHelp(
   RichControl ctl
);
[C++]
public: virtual bool GetShowHelp(
   RichControl* ctl
);
[JScript]
public function GetShowHelp(
   ctl : RichControl
) : Boolean;

Parameters

ctl
A RichControl for which Help will or will not be displayed.

Return Value

true if help will be displayed for the control; otherwise, false.

Remarks

When you use the SetHelpTopic or SetHelpString method to associate a topic or prompt with a specified control, calling this method automatically returns true. You can override this behavior by passing false to the SetShowHelp method.

See Also

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