Table of Contents

Class InputProviderMouseButtonEventArgs

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

Contains data for input provider mouse button events

public class InputProviderMouseButtonEventArgs : EventArgs
Inheritance
object
InputProviderMouseButtonEventArgs
Inherited Members

Constructors

InputProviderMouseButtonEventArgs(ArtemisDevice?, MouseButton, bool)

public InputProviderMouseButtonEventArgs(ArtemisDevice? device, MouseButton button, bool isDown)

Parameters

device ArtemisDevice

The device that triggered the event

button MouseButton

The button that triggered the event

isDown bool

Whether the button is pressed down

Properties

Button

Gets the button that triggered the event

public MouseButton Button { get; }

Property Value

MouseButton

Device

Gets the device that triggered the event

public ArtemisDevice? Device { get; }

Property Value

ArtemisDevice

IsDown

Gets whether the button is pressed down

public bool IsDown { get; }

Property Value

bool