C# Class Binarysharp.MemoryManagement.Windows.Keyboard.BaseKeyboard

Abstract class defining a virtual keyboard.
Afficher le fichier Open project: Finzenku/FragmentJamella

Protected Properties

Свойство Type Description
PressedKeys Keys>>.List
Window RemoteWindow

Méthodes publiques

Méthode Description
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.

Méthodes protégées

Méthode Description
BaseKeyboard ( RemoteWindow window ) : System

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

Method Details

BaseKeyboard() protected méthode

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

Press() public abstract méthode

Presses the specified virtual key to the window.
public abstract Press ( Keys key ) : void
key Keys The virtual key to press.
Résultat void

Press() public méthode

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

PressRelease() public méthode

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

Release() public méthode

Releases the specified virtual key to the window.
public Release ( Keys key ) : void
key Keys The virtual key to release.
Résultat void

Write() public abstract méthode

Writes the specified character to the window.
public abstract Write ( char character ) : void
character char The character to write.
Résultat void

Write() public méthode

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

Property Details

PressedKeys protected_oe static_oe property

The collection storing the current pressed keys.
protected static List> PressedKeys
Résultat Keys>>.List

Window protected_oe property

The reference of the RemoteWindow object.
protected RemoteWindow Window
Résultat RemoteWindow