Class InputProviderMouseButtonEventArgs
Contains data for input provider mouse button events
public class InputProviderMouseButtonEventArgs : EventArgs
- Inheritance
-
objectInputProviderMouseButtonEventArgs
- Inherited Members
Constructors
InputProviderMouseButtonEventArgs(ArtemisDevice?, MouseButton, bool)
public InputProviderMouseButtonEventArgs(ArtemisDevice? device, MouseButton button, bool isDown)
Parameters
deviceArtemisDeviceThe device that triggered the event
buttonMouseButtonThe button that triggered the event
isDownboolWhether the button is pressed down
Properties
Button
Gets the button that triggered the event
public MouseButton Button { get; }
Property Value
Device
Gets the device that triggered the event
public ArtemisDevice? Device { get; }
Property Value
IsDown
Gets whether the button is pressed down
public bool IsDown { get; }