Class DoubleClickComputerAction
A double click action.
public sealed class DoubleClickComputerAction : IComputerAction
- Inheritance
-
DoubleClickComputerAction
- Implements
- Inherited Members
Constructors
DoubleClickComputerAction()
public DoubleClickComputerAction()
DoubleClickComputerAction(Coordinate)
public DoubleClickComputerAction(Coordinate position)
Parameters
position
Coordinate
Properties
Type
Specifies the event type.For a double click action, this property is always set to double_click
.
[JsonInclude]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonPropertyName("type")]
public ComputerActionType Type { get; }
Property Value
X
The x-coordinate where the double click occurred.
[JsonInclude]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonPropertyName("x")]
public int X { get; }
Property Value
Y
The y-coordinate where the double click occurred.
[JsonInclude]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonPropertyName("y")]
public int Y { get; }