SetCursorPosBottomRHS
Set the cursor position relative to the bottom right corner of window.
void SetCursorPosBottomRHS();
void SetCursorPosBottomRHS(int moveLeft, int moveUp);
Parameters
moveLeft:
x offset relative to the right side of the given window.
moveUp:
y offset relative to the right side of the given window.
Return Value
None
Remarks
The optional parameters can be used to offset the mouse cursor position from the bottom right side of the given window.
Example
private Control notepadWindow;
notepadWindow = FindTopWindow("Untitled - Notepad");
this.notepadWindow.SetCursorPosBottomRHS();