Informs the view generator about a mouse double click event.

SendMouseDoubleClick(System.Drawing.Point, ServerVisualization.UserInput.MouseButtons, ServerVisualization.UserInput.ModifierKeys)

public bool SendMouseDoubleClick(System.Drawing.Point viewLocation, ServerVisualization.UserInput.MouseButtons button, ServerVisualization.UserInput.ModifierKeys modifierKeys);
Public Function SendMouseDoubleClick(ByVal viewLocation As System.Drawing.Point, ByVal button As ServerVisualization.UserInput.MouseButtons, ByVal modifierKeys As ServerVisualization.UserInput.ModifierKeys) As Boolean

Parameters

Parameter Description
viewLocation Specifies the location, where the mouse double click event occurs. The coordinates must be in pixels with an origin at the top-left corner of the view's location.
button Specifies the pressed mouse button. It can be a value from the ServerVisualization.UserInput.MouseButtons enumeration.
modifierKeys Specifies modifier keys. It can be a combination of the ServerVisualization.UserInput.ModifierKeys values.

Return Value

If the event has been handled, the method returns true. Otherwise, it returns false.