Property | Type | Description | |
---|---|---|---|
Window | RemoteWindow |
Method | Description | |
---|---|---|
ClickLeft ( ) : void |
Clicks the left button of the mouse at the current cursor position.
|
|
ClickMiddle ( ) : void |
Clicks the middle button of the mouse at the current cursor position.
|
|
ClickRight ( ) : void |
Clicks the right button of the mouse at the current cursor position.
|
|
DoubleClickLeft ( ) : void |
Double clicks the left button of the mouse at the current cursor position.
|
|
MoveTo ( int x, int y ) : void |
Moves the cursor at the specified coordinate from the position of the window.
|
|
PressLeft ( ) : void |
Presses the left button of the mouse at the current cursor position.
|
|
PressMiddle ( ) : void |
Presses the middle button of the mouse at the current cursor position.
|
|
PressRight ( ) : void |
Presses the right button of the mouse at the current cursor position.
|
|
ReleaseLeft ( ) : void |
Releases the left button of the mouse at the current cursor position.
|
|
ReleaseMiddle ( ) : void |
Releases the middle button of the mouse at the current cursor position.
|
|
ReleaseRight ( ) : void |
Releases the right button of the mouse at the current cursor position.
|
|
ScrollHorizontally ( int delta = 120 ) : void |
Scrolls horizontally using the wheel of the mouse at the current cursor position.
|
|
ScrollVertically ( int delta = 120 ) : void |
Scrolls vertically using the wheel of the mouse at the current cursor position.
|
Method | Description | |
---|---|---|
BaseMouse ( RemoteWindow window ) : System.Threading |
Initializes a new instance of a child of the BaseMouse class.
|
|
MoveToAbsolute ( int x, int y ) : void |
Moves the cursor at the specified coordinate.
|
protected BaseMouse ( RemoteWindow window ) : System.Threading | ||
window | RemoteWindow | The reference of the |
return | System.Threading |
public MoveTo ( int x, int y ) : void | ||
x | int | The x-coordinate. |
y | int | The y-coordinate. |
return | void |
protected abstract MoveToAbsolute ( int x, int y ) : void | ||
x | int | The x-coordinate. |
y | int | The y-coordinate. |
return | void |
public abstract ScrollHorizontally ( int delta = 120 ) : void | ||
delta | int | The amount of wheel movement. |
return | void |
public abstract ScrollVertically ( int delta = 120 ) : void | ||
delta | int | The amount of wheel movement. |
return | void |