Class ArtemisMouseScrollEventArgs
Contains data for mouse scroll events
public class ArtemisMouseScrollEventArgs : EventArgs
- Inheritance
-
objectArtemisMouseScrollEventArgs
- Inherited Members
Properties
Delta
Gets the scroll delta (can positive or negative)
public int Delta { get; }
Property Value
Device
Gets the device that triggered the event
public ArtemisDevice? Device { get; }
Property Value
Direction
Gets the direction in which was scrolled
public MouseScrollDirection Direction { get; }
Property Value
IsScrollingDown
Gets a boolean indicating whether the mouse scrolled down
public bool IsScrollingDown { get; }
Property Value
IsScrollingLeft
Gets a boolean indicating whether the mouse scrolled left
public bool IsScrollingLeft { get; }
Property Value
IsScrollingRight
Gets a boolean indicating whether the mouse scrolled right
public bool IsScrollingRight { get; }
Property Value
IsScrollingUp
Gets a boolean indicating whether the mouse scrolled up
public bool IsScrollingUp { get; }