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!

RichControl.AddOnHelp

Adds an event handler for the help event. The help event occurs when the user requests help for this control. This may be caused by the user pressing F1, or used "Whats This Help".

[Visual Basic]
Overridable Public Sub AddOnHelp( _
   ByVal handler As HelpEventHandler _
)
[C#]
public virtual void AddOnHelp(
   HelpEventHandler handler
);
[C++]
public: virtual void AddOnHelp(
   HelpEventHandler* handler
);
[JScript]
public function AddOnHelp(
   handler : HelpEventHandler
);

Parameters

handler
New handler to install for this event.

See Also

RichControl Class | RichControl Members | System.WinForms Namespace | RemoveOnHelp