Alsing.Windows.Forms.SyntaxBoxControl.GotoLine C# (CSharp) Method

GotoLine() public method

Moves the caret of the active view to a specific row.
public GotoLine ( int RowIndex ) : void
RowIndex int the row to jump to
return void
        public void GotoLine(int RowIndex)
        {
            ((EditViewControl) _ActiveView).GotoLine(RowIndex);
        }