Class
TunnelingMouseEventArgs

Event arguments for mouse events coming through a wrapped Win32 window.

Definition

Namespace:ArtOfTest.Common.Win32

Assembly:ArtOfTest.WebAii.dll

Syntax:

cs-api-definition
public class TunnelingMouseEventArgs : MouseEventArgs

Inheritance: objectEventArgsMouseEventArgsTunnelingMouseEventArgs

Inherited Members MouseEventArgs.ButtonMouseEventArgs.ClicksMouseEventArgs.XMouseEventArgs.YMouseEventArgs.DeltaMouseEventArgs.LocationEventArgs.Empty

Constructors

TunnelingMouseEventArgs(MouseButtons, int, int, int, int)

Constructs a new TunnelingMouseEventArgs object.

Declaration

cs-api-definition
public TunnelingMouseEventArgs(MouseButtons button, int clicks, int x, int y, int delta)

Parameters

button

MouseButtons

The mouse button.

clicks

int

Number of clicks.

x

int

The mouse x position.

y

int

The mouse y position.

delta

int

A signed count of the number of detents the wheel has rotated.

Properties

StopTunneling

Controls whether or not to stop processing mouse messages.

Declaration

cs-api-definition
public bool StopTunneling { get; set; }

Property Value

bool