C# Class Microsoft.VisualStudio.Text.Editor.KeyProcessor

Processes the keyboard input of the editor.
Export this functionality by using the IKeyProcessorProvider.
ファイルを表示 Open project: microsoft/vs-editor-api

Public Methods

Method Description
FlagsChanged ( Microsoft.VisualStudio.Text.Editor.KeyEventArgs e ) : void

Handles the FlagsChanged event.

KeyDown ( Microsoft.VisualStudio.Text.Editor.KeyEventArgs e ) : void

Handles the KeyDown event.

KeyUp ( Microsoft.VisualStudio.Text.Editor.KeyEventArgs e ) : void

Handles the KeyUp event.

Method Details

FlagsChanged() public method

Handles the FlagsChanged event.
public FlagsChanged ( Microsoft.VisualStudio.Text.Editor.KeyEventArgs e ) : void
e Microsoft.VisualStudio.Text.Editor.KeyEventArgs /// Event arguments that describe the event. ///
return void

KeyDown() public method

Handles the KeyDown event.
public KeyDown ( Microsoft.VisualStudio.Text.Editor.KeyEventArgs e ) : void
e Microsoft.VisualStudio.Text.Editor.KeyEventArgs /// Event arguments that describe the event. ///
return void

KeyUp() public method

Handles the KeyUp event.
public KeyUp ( Microsoft.VisualStudio.Text.Editor.KeyEventArgs e ) : void
e Microsoft.VisualStudio.Text.Editor.KeyEventArgs /// Event arguments that describe the event. ///
return void