Catrobat.IDE.WindowsShared.Common.NavigationHelper.GoForward C# (CSharp) Method

GoForward() public method

Virtual method used by the GoForwardCommand property to invoke the Windows.UI.Xaml.Controls.Frame.GoForward method.
public GoForward ( ) : void
return void
        public virtual void GoForward()
        {
            if (this.Frame != null && this.Frame.CanGoForward) this.Frame.GoForward();
        }