Table of Contents

Class InputProviderMouseScrollEventArgs

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

Contains data for input provider mouse button events

public class InputProviderMouseScrollEventArgs : EventArgs
Inheritance
object
InputProviderMouseScrollEventArgs
Inherited Members

Constructors

InputProviderMouseScrollEventArgs(ArtemisDevice?, MouseScrollDirection, int)

public InputProviderMouseScrollEventArgs(ArtemisDevice? device, MouseScrollDirection direction, int delta)

Parameters

device ArtemisDevice

The device that triggered the event

direction MouseScrollDirection

The direction in which was scrolled

delta int

The scroll delta (can positive or negative)

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