
Hi
I have just upgraded the code from version v16.1.0631 to the v19.1.0681 and found that I'm unable to set the caret position of the syntaxEditor to specified location. Here was my earlier code:
IEditorView view = this.syntaxEditor.ActiveView;
view.SyntaxEditor.Caret.Position = new TextPosition(lineNumber, 0);
Now I see that Caret property is not available, how to set the caret position to the desired line number and location?
Thanks in advance