MoveEditor

Deprecated. Do not use in new code.

Description Moves the Editor to the given line and column.
Returns Nothing
Usage Script or steady state.
Function Groups Editor
Related to: AddEditorText | Editor | MakeEditor
Format: MoveEditor(EditorVal, Line, Column)
Parameters  
EditorVal
Required. An editor Value which is returned by MakeEditor.
Line
Required. Any numeric expression that specifies the line to move the editor to.
Column
Required. 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.