Table of Contents

Class ArtemisMouseScrollEventArgs

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

Contains data for mouse scroll events

public class ArtemisMouseScrollEventArgs : EventArgs
Inheritance
object
ArtemisMouseScrollEventArgs
Inherited Members

Properties

Delta

Gets the scroll delta (can positive or negative)

public int Delta { get; }

Property Value

int

Device

Gets the device that triggered the event

public ArtemisDevice? Device { get; }

Property Value

ArtemisDevice

Direction

Gets the direction in which was scrolled

public MouseScrollDirection Direction { get; }

Property Value

MouseScrollDirection

IsScrollingDown

Gets a boolean indicating whether the mouse scrolled down

public bool IsScrollingDown { get; }

Property Value

bool

IsScrollingLeft

Gets a boolean indicating whether the mouse scrolled left

public bool IsScrollingLeft { get; }

Property Value

bool

IsScrollingRight

Gets a boolean indicating whether the mouse scrolled right

public bool IsScrollingRight { get; }

Property Value

bool

IsScrollingUp

Gets a boolean indicating whether the mouse scrolled up

public bool IsScrollingUp { get; }

Property Value

bool