MouseAction Constructor (MouseButtons, MouseActionType, Point)

Initializes a new instance of the MouseAction class by using the provided button designation, type of action, and location of the operation.

Namespace:  Microsoft.VisualStudio.TestTools.UITest.Common
Assembly:  Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)

Syntax

'Declaration
Public Sub New ( _
    button As MouseButtons, _
    actionType As MouseActionType, _
    location As Point _
)
public MouseAction(
    MouseButtons button,
    MouseActionType actionType,
    Point location
)
public:
MouseAction(
    MouseButtons button, 
    MouseActionType actionType, 
    Point location
)
new : 
        button:MouseButtons * 
        actionType:MouseActionType * 
        location:Point -> MouseAction
public function MouseAction(
    button : MouseButtons, 
    actionType : MouseActionType, 
    location : Point
)

Parameters

  • button
    Type: MouseButtons

    A member of the MouseButtons enumeration that indicates which mouse button is pressed.

  • location
    Type: Point

    A Point object that indicates the location of the operation.

.NET Framework Security

See Also

Reference

MouseAction Class

MouseAction Overload

Microsoft.VisualStudio.TestTools.UITest.Common Namespace

MouseButtons

MouseActionType

Point