Skip to main content

RightClickLHS

Right click the top left hand side of the given window.

void RightClickLHS();
void RightClickLHS(int moveRight, int moveDown);

Parameters

moveRight: x offset relative to the right hand side of the given window.

moveDown: y offset relative to the top of the given window.

Return Value

None

Remarks

The optional parameters can be used to offset the mouse cursor position from the right hand corner of the given window.

Example

private Control notepadWindow;
notepadWindow = FindTopWindow("Untitled - Notepad");
this.notepadWindow.RightClickLHS();

Related: