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