RightMouseDown
void RightMouseDown(string control)Description
Simulates pressing and holding the right mouse button over a specified control.
Does not release until RightMouseUp is called.
Parameters
- control - Identifier of the UI control.
Returns
- none
Example
void main()
{
RightMouseDown("CANVAS");
// ... custom context operation
RightMouseUp("CANVAS");
}