Click or drag to resize

IMouse Interface

A service that can be used for mouse input simulation and handling.

Namespace:  DotNetBrowser.Input.Mouse
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
public interface IMouse : IAutoDisposable

The IMouse type exposes the following members.

Properties
  NameDescription
Public propertyDragged
Occurs when the mouse is dragged over the web page.
Public propertyEntered
Occurs when the mouse has entered the web page.
Public propertyExited
Occurs when the mouse has exited the web page.
Public propertyIsDisposed
Indicates if the object is already disposed.
(Inherited from IAutoDisposable.)
Public propertyMoved
Occurs when the mouse has moved over the web page.
Public propertyPressed
Occurs when the mouse button has been pressed on the web page.
Public propertyReleased
Occurs when the mouse button has been released on the web page.
Public propertyWheelMoved
Occurs when the mouse wheel has scrolled on the web page.
Top
Events
  NameDescription
Public eventDisposed
Occurs when the object has been disposed.
(Inherited from IAutoDisposable.)
Top
Extension Methods
  NameDescription
Public Extension MethodSimulateClick(MouseButton, Point)Overloaded.
Simulate mouse button click at the specified location.
(Defined by MouseExtensions.)
Public Extension MethodSimulateClick(MouseButton, IElement)Overloaded.
Simulate mouse button click at the specified element.
(Defined by MouseExtensions.)
Top
See Also