Alsing.Windows.Forms.SyntaxBox.EditViewControl.GotoNextBookmark C# (CSharp) Метод

GotoNextBookmark() публичный Метод

Moves the caret to the next line that has a bookmark.
public GotoNextBookmark ( ) : void
Результат void
        public void GotoNextBookmark()
        {
            int index = Document.GetNextBookmark(Caret.Position.Y);
            Caret.SetPos(new TextPoint(0, index));
            ScrollIntoView();
            Redraw();
        }