Informs the view generator about a mouse up event.

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

public bool SendMouseUp(System.Drawing.Point viewLocation, ServerVisualization.UserInput.MouseButtons button, ServerVisualization.UserInput.ModifierKeys modifierKeys);
Public Function SendMouseUp(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 up event occurs. The coordinates must be in pixels with an origin at the top-left corner of the view's location.
button Specifies a 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.