ARCed.Scintilla.KeyBinding.KeyBinding C# (CSharp) Method

KeyBinding() public method

Initializes a new instance of the KeyBinding structure.
public KeyBinding ( Keys keycode, Keys modifiers ) : System.Windows.Forms
keycode Keys Key to trigger command
modifiers Keys key modifiers to the Keyboard shortcut
return System.Windows.Forms
        public KeyBinding(Keys keycode, Keys modifiers)
        {
            this._keycode = keycode;
            this._modifiers = modifiers;
        }