RightMouseUp
void RightMouseUp(string control)Description
Simulates releasing the right mouse button over a specified control.
Often used with RightMouseDown to perform extended actions.
Parameters
- control - Identifier of the UI control.
Returns
- none
Example
void main()
{
RightMouseDown("IMAGE_VIEW");
RightMouseUp("IMAGE_VIEW");
}