Class InputProviderMouseScrollEventArgs
Contains data for input provider mouse button events
public class InputProviderMouseScrollEventArgs : EventArgs
- Inheritance
-
objectInputProviderMouseScrollEventArgs
- Inherited Members
Constructors
InputProviderMouseScrollEventArgs(ArtemisDevice?, MouseScrollDirection, int)
public InputProviderMouseScrollEventArgs(ArtemisDevice? device, MouseScrollDirection direction, int delta)
Parameters
deviceArtemisDeviceThe device that triggered the event
directionMouseScrollDirectionThe direction in which was scrolled
deltaintThe scroll delta (can positive or negative)
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; }