C# Класс Axiom.Input.MouseEventArgs

Events args for mouse input events.
Наследование: Axiom.Input.InputEventArgs
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
button MouseButtons
relativeX float
relativeY float
relativeZ float
x float
y float
z float

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

Метод Описание
MouseEventArgs ( MouseButtons button, ModifierKeys modifiers, float x, float y, float z ) : System

Constructor.

MouseEventArgs ( MouseButtons button, ModifierKeys modifiers, float x, float y, float z, float relX, float relY, float relZ ) : System

Constructor.

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

MouseEventArgs() публичный метод

Constructor.
public MouseEventArgs ( MouseButtons button, ModifierKeys modifiers, float x, float y, float z ) : System
button MouseButtons Mouse button pressed.
modifiers ModifierKeys Any modifier keys that are down.
x float Mouse X position.
y float Mouse Y position.
z float Mouse Z position.
Результат System

MouseEventArgs() публичный метод

Constructor.
public MouseEventArgs ( MouseButtons button, ModifierKeys modifiers, float x, float y, float z, float relX, float relY, float relZ ) : System
button MouseButtons Mouse button pressed.
modifiers ModifierKeys Any modifier keys that are down.
x float Mouse X position.
y float Mouse Y position.
z float Mouse Z position.
relX float Relative mouse X position.
relY float Relative mouse Y position.
relZ float Relative mouse Z position.
Результат System

Описание свойств

button защищенное свойство

Mouse button pressed during this event.
protected MouseButtons button
Результат MouseButtons

relativeX защищенное свойство

Relative X coordinate of the mouse.
protected float relativeX
Результат float

relativeY защищенное свойство

Relative Y coordinate of the mouse.
protected float relativeY
Результат float

relativeZ защищенное свойство

Relative Z coordinate of the mouse.
protected float relativeZ
Результат float

x защищенное свойство

X coordinate of the mouse.
protected float x
Результат float

y защищенное свойство

Y coordinate of the mouse.
protected float y
Результат float

z защищенное свойство

Z coordinate of the mouse.
protected float z
Результат float