Parameters
- fromX
Type: System.Int32
The x coordinate of the start point inside tab's area for rise mouse move event.
- fromY
Type: System.Int32
The y coordinate of the start point inside tab's area for rise mouse move event.
- toX
Type: System.Int32
The x coordinate of the end point inside tab's area for rise mouse move event.
- toY
Type: System.Int32
The y coordinate of the end point inside tab's area for rise mouse move event.
- useClick
Type: System.Int32
true if necessary performs the left mouse click in the end point: otherwise false. Default value is false.
| C# | Copy Code |
|---|---|
// performs the mouse moving from [200, 250] to [500, 250] instance.ActiveTab.MouseMove(200, 250, 500, 250); // and next // preforms the mouse moving from [500, 250] to [500, 125] // and rise left mouse click in the last location instance.ActiveTab.MouseMove(500, 250, 500, 125, true); | |
| PHP | Copy Code |
|---|---|
// performs the mouse moving from [200, 250] to [500, 250] $instance->ActiveTab->MouseMove(200, 250, 500, 250); // and next // preforms the mouse moving from [500, 250] to [500, 125] // and rise left mouse click in the last location $instance->ActiveTab->MouseMove(500, 250, 500, 125, true); | |
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family