ARCed.Scintilla.KeyBinding.KeyBinding C# (CSharp) Метод

KeyBinding() публичный Метод

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
Результат System.Windows.Forms
        public KeyBinding(Keys keycode, Keys modifiers)
        {
            this._keycode = keycode;
            this._modifiers = modifiers;
        }