ZennoLab Assemblies Documentation
FullEmulationMouseClick Method
Example 

Type: System.String

The mouse button. It can be "left", "right" or "middle".

Type: System.String

The mouse button event. It can be "click", "down" or "up".

Performs the mouse click event in current point inside the current tab.
Syntax
public void FullEmulationMouseClick( 
   string button,
   string mouseEvent
)

Parameters

button

Type: System.String

The mouse button. It can be "left", "right" or "middle".

mouseEvent

Type: System.String

The mouse button event. It can be "click", "down" or "up".

Example
The following code example demonstrates uses of the FullEmulationMouseClick method.
instance.ActiveTab.FullEmulationMouseMove(500,500);
instance.ActiveTab.FullEmulationMouseClick("left", "click");
$instance->ActiveTab->FullEmulationMouseMove(500,500);
$instance->ActiveTab->MouseClick("left", "click");
Requirements

Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

Tab Class
Tab Members
Set mouse full emulation options method
Mouse move to coordinates method
Mouse move to element method
Mouse move above element method
Current mouse position

Send Feedback