Optional Key for the key combination you want to capture for a key combination.
This value is the key following a modifier. Default: Alt-F1,
this value is F1.
This property is static and should be set once at application startup.
public static Keys HotkeyKey
Example
[STAThread]
static void Main()
{
WebStoreConfig Config = new WebStoreConfig();
Config.GetSettingsFromConfig();
// *** Enable or disable Help Builder Editing at runtime
HelpBuilderProvider.EnableHelpBuilderHelpProvider = Config.EnableHelpBuilderEditing;
HelpBuilderHelpProvider.HotkeyKey = Keys.F3;
HelpBuilderHelpProvider.HotkeyModifier = Keys.Control;
Application.Run(new Form1());
}
See also:
Class HelpBuilderHelpProvider© West Wind Techologies, 1996-2023 • Updated: 07/31/07
Comment or report problem with topic