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

Processes the keyboard input of the editor.
Export this functionality by using the IKeyProcessorProvider.
Afficher le fichier Open project: microsoft/vs-editor-api

Méthodes publiques

Méthode 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 méthode

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. ///
Résultat void

KeyDown() public méthode

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. ///
Résultat void

KeyUp() public méthode

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. ///
Résultat void