C# 클래스 Microsoft.VisualStudio.Text.Editor.KeyProcessor

Processes the keyboard input of the editor.
Export this functionality by using the IKeyProcessorProvider.
파일 보기 프로젝트 열기: microsoft/vs-editor-api

공개 메소드들

메소드 설명
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.

메소드 상세

FlagsChanged() 공개 메소드

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. ///
리턴 void

KeyDown() 공개 메소드

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. ///
리턴 void

KeyUp() 공개 메소드

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. ///
리턴 void