C# Class Umc.Core.Tools.VSGesture.Hook.MouseEventExtArgs

Provides data for the MouseClickExt and MouseMoveExt events. It also provides a property Handled. Set this property to true to prevent further processing of the event in other applications.
Inheritance: System.Windows.Forms.MouseEventArgs
Show file Open project: powerumc/vsgesture Class Usage Examples

Public Methods

Method Description
MouseEventExtArgs ( MouseButtons buttons, int clicks, int x, int y, int delta ) : System.Windows.Forms

Initializes a new instance of the MouseEventArgs class.

Private Methods

Method Description
MouseEventExtArgs ( MouseEventArgs e ) : System.Windows.Forms

Initializes a new instance of the MouseEventArgs class.

Method Details

MouseEventExtArgs() public method

Initializes a new instance of the MouseEventArgs class.
public MouseEventExtArgs ( MouseButtons buttons, int clicks, int x, int y, int delta ) : System.Windows.Forms
buttons MouseButtons One of the MouseButtons values indicating which mouse button was pressed.
clicks int The number of times a mouse button was pressed.
x int The x-coordinate of a mouse click, in pixels.
y int The y-coordinate of a mouse click, in pixels.
delta int A signed count of the number of detents the wheel has rotated.
return System.Windows.Forms