Re: Command Line switches
There is no command-line option to jump to a line. But once SuperEdi is started, you can open a file by entering the file name in the address bar. Here you can also specify the line number using any of these formats: a) FILENAME line LINE b) FILENAME(LINE) c) FILENAME(LINE, COLUMN) d) FILENAME(LINE, COLUMN, ENDLINE, ENDCOLUMN) And you can set the cursor position by script. For example:
var app = new ActiveXObject("SuperEdi.Application"); app.Visible = true; var doc = app.Documents.Open("C:\\Temp\\Testfile.txt"); doc.Selection.CurrentLine = 15;
|