VncClient SendPointerEvent Method RemoteViewing
Sends a pointer event to the VNC server to indicate mouse motion, a button click, etc.

Namespace: RemoteViewing.Vnc
Assembly: RemoteViewing (in RemoteViewing.dll) Version: 0.9.1.0 (0.9.1.0)
Syntax

public void SendPointerEvent(
	int x,
	int y,
	int pressedButtons
)

Parameters

x
Type: OnlineSystem Int32
The X coordinate of the mouse.
y
Type: OnlineSystem Int32
The Y coordinate of the mouse.
pressedButtons
Type: OnlineSystem Int32
A bit mask of pressed mouse buttons, in X11 convention: 1 is left, 2 is middle, and 4 is right. Mouse wheel scrolling is treated as a button event: 8 for up and 16 for down.
See Also