NUnitForms Class Library

MouseController.Hover Method (Single, Single)

Simulate hovering over the control under test at the specified x and y-coordinate.

[Visual Basic]
Overloads Public Sub Hover( _
   ByVal x As Single, _
   ByVal y As Single _
)
[C#]
public void Hover(
   float x,
   float y
);

Parameters

x
The Single x-coordinate, relative to the control under test, to move the mouse to.
y
The Single y-coordinate, relative to the control under test, to move the mouse to.

Remarks

Hover positions the mouse over the control under test at the specified point (x, y) for the system defined mouse hover time and then processes the events.

See Also

MouseController Class | NUnit.Extensions.Forms Namespace | MouseController.Hover Overload List