Deprecated
Description: This statement moves the Editor to the given line and column.
Returns: Nothing
Usage: Script or Steady State
Format: MoveEditor(EditorVal, Line, Column)
Parameters: EditorVal { Editor } { required } { no default }
An editor Value which is returned by MakeEditor.
Line { numeric } { required } { no default }
Any numeric expression that specifies the line to move the editor to.
Column { numeric } { required } { no default }
Any numeric expression that specifies the column to move the editor to.
Example:
aNewEditor = MakeEditor();
...
MoveEditor(aNewEditor, 22, 1);
This statement will cause the cursor to move to line 22, column 1 of aNewEditor.
See Also: