C# 클래스 Binarysharp.MemoryManagement.Windows.Keyboard.BaseKeyboard

Abstract class defining a virtual keyboard.
파일 보기 프로젝트 열기: Finzenku/FragmentJamella

보호된 프로퍼티들

프로퍼티 타입 설명
PressedKeys Keys>>.List
Window RemoteWindow

공개 메소드들

메소드 설명
Press ( Keys key ) : void

Presses the specified virtual key to the window.

Press ( Keys key, TimeSpan interval ) : void

Presses the specified virtual key to the window at a specified interval.

PressRelease ( Keys key ) : void

Presses and releaes the specified virtual key to the window.

Release ( Keys key ) : void

Releases the specified virtual key to the window.

Write ( char character ) : void

Writes the specified character to the window.

Write ( string text ) : void

Writes the text representation of the specified array of objects to the window using the specified format information.

보호된 메소드들

메소드 설명
BaseKeyboard ( RemoteWindow window ) : System

Initializes a new instance of a child of the BaseKeyboard class.

메소드 상세

BaseKeyboard() 보호된 메소드

Initializes a new instance of a child of the BaseKeyboard class.
protected BaseKeyboard ( RemoteWindow window ) : System
window RemoteWindow The reference of the object.
리턴 System

Press() 공개 추상적인 메소드

Presses the specified virtual key to the window.
public abstract Press ( Keys key ) : void
key Keys The virtual key to press.
리턴 void

Press() 공개 메소드

Presses the specified virtual key to the window at a specified interval.
public Press ( Keys key, TimeSpan interval ) : void
key Keys The virtual key to press.
interval TimeSpan The interval between the key activations.
리턴 void

PressRelease() 공개 메소드

Presses and releaes the specified virtual key to the window.
public PressRelease ( Keys key ) : void
key Keys The virtual key to press and release.
리턴 void

Release() 공개 메소드

Releases the specified virtual key to the window.
public Release ( Keys key ) : void
key Keys The virtual key to release.
리턴 void

Write() 공개 추상적인 메소드

Writes the specified character to the window.
public abstract Write ( char character ) : void
character char The character to write.
리턴 void

Write() 공개 메소드

Writes the text representation of the specified array of objects to the window using the specified format information.
public Write ( string text ) : void
text string A composite format string.
리턴 void

프로퍼티 상세

PressedKeys 보호되어 있는 정적으로 프로퍼티

The collection storing the current pressed keys.
protected static List> PressedKeys
리턴 Keys>>.List

Window 보호되어 있는 프로퍼티

The reference of the RemoteWindow object.
protected RemoteWindow Window
리턴 RemoteWindow