C# Class ConsoleControl.KeyMapping

A KeyMapping defines how a key combination should be mapped to a SendKeys message.
ファイルを表示 Open project: Gainedge/BetterExplorer

Public Methods

Method Description
KeyMapping ( ) : System

Initializes a new instance of the KeyMapping class.

KeyMapping ( bool control, bool alt, bool shift, Keys keyCode, string sendKeysMapping, string streamMapping ) : System

Initializes a new instance of the KeyMapping class.

Method Details

KeyMapping() public method

Initializes a new instance of the KeyMapping class.
public KeyMapping ( ) : System
return System

KeyMapping() public method

Initializes a new instance of the KeyMapping class.
public KeyMapping ( bool control, bool alt, bool shift, Keys keyCode, string sendKeysMapping, string streamMapping ) : System
control bool if set to true [control].
alt bool if set to true [alt].
shift bool if set to true [shift].
keyCode Keys The key code.
sendKeysMapping string The send keys mapping.
streamMapping string The stream mapping.
return System