HelpBuilderHelpProvider.AlternateHelpHotKeyPressed

Event that is fired when the Alternate Hotkey is pressed.

If implemented this event handler overrides the default action of showing HelpBuilder. A reference to the HelpProvider is passed the first event parameter and you can do the following to override:

hp.AlternateHelpHotKeyPressed += new EventHandler(this.MyKeyHandler); ... protected void MyKeyHandler(object sender, EventArgs e) { HelpBuilderHelpProvider hp = sender as HelpBuilderHelpProvider; hp.ShowHelpBuilder(); // display HelpBuilder // do your custom stuff ... }



public System.EventHandler AlternateHelpHotKeyPressed

See also:

Class HelpBuilderHelpProvider


  Last Updated: 2/5/2005 | © West Wind Techologies, 2007