ARCed.Scintilla.DocumentNavigation.NavigateForward C# (CSharp) Method

NavigateForward() public method

After 1 or more backwards navigations this command navigates to the previous backwards navigation point.
public NavigateForward ( ) : void
return void
        public void NavigateForward()
        {
            if (!this.CanNavigateForward)
                return;

            int pos = this._forewardStack.Pop().Start;
            this._backwardStack.Push(this.NewRange(pos));
            Scintilla.Caret.Goto(pos);

            this._supressNext = true;
        }