Exemplo n.º 1
0
 public Task DownAsync(MouseButton button, int?clickCount)
 => _channel.MouseDownAsync(button.EnsureDefaultValue(MouseButton.Left), clickCount ?? 1);
Exemplo n.º 2
0
 public Task DownAsync(MouseButton button = MouseButton.Left, int clickCount = 1) => _channel.MouseDownAsync(button, clickCount);
Exemplo n.º 3
0
 public Task DownAsync(MouseDownOptions options = default)
 => _channel.MouseDownAsync(button: options?.Button, clickCount: options?.ClickCount);