Class ArtemisMouseMoveEventArgs
Contains data for mouse movement events
Inherited Members
Namespace: Artemis.Core.Services
Assembly: Artemis.Core.dll
Syntax
public class ArtemisMouseMoveEventArgs : EventArgs
Properties
CursorX
Gets the X position of the mouse cursor (not necessarily tied to the specific device)
Declaration
public int CursorX { get; }
Property Value
Type | Description |
---|---|
int |
CursorY
Gets the Y position of the mouse cursor (not necessarily tied to the specific device)
Declaration
public int CursorY { get; }
Property Value
Type | Description |
---|---|
int |
DeltaX
Gets the movement delta in the horizontal direction
Declaration
public int DeltaX { get; }
Property Value
Type | Description |
---|---|
int |
DeltaY
Gets the movement delta in the vertical direction
Declaration
public int DeltaY { get; }
Property Value
Type | Description |
---|---|
int |
Device
Gets the device that triggered the event
Declaration
public ArtemisDevice? Device { get; }
Property Value
Type | Description |
---|---|
ArtemisDevice |