Table of Contents

Class ArtemisMouseMoveEventArgs

Namespace
Artemis.Core.Services
Assembly
Artemis.Core.dll

Contains data for mouse movement events

public class ArtemisMouseMoveEventArgs : EventArgs
Inheritance
ArtemisMouseMoveEventArgs
Inherited Members

Properties

CursorX

Gets the X position of the mouse cursor (not necessarily tied to the specific device)

public int CursorX { get; }

Property Value

int

CursorY

Gets the Y position of the mouse cursor (not necessarily tied to the specific device)

public int CursorY { get; }

Property Value

int

DeltaX

Gets the movement delta in the horizontal direction

public int DeltaX { get; }

Property Value

int

DeltaY

Gets the movement delta in the vertical direction

public int DeltaY { get; }

Property Value

int

Device

Gets the device that triggered the event

public ArtemisDevice? Device { get; }

Property Value

ArtemisDevice