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();
        }