C# Класс 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.
Наследование: System.Windows.Forms.MouseEventArgs
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
MouseEventExtArgs ( MouseButtons buttons, int clicks, int x, int y, int delta ) : System.Windows.Forms

Initializes a new instance of the MouseEventArgs class.

Приватные методы

Метод Описание
MouseEventExtArgs ( MouseEventArgs e ) : System.Windows.Forms

Initializes a new instance of the MouseEventArgs class.

Описание методов

MouseEventExtArgs() публичный Метод

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.
Результат System.Windows.Forms