Skybound.Gecko.GeckoWebBrowser.GoForward C# (CSharp) Méthode

GoForward() public méthode

Navigates to the next page in the history, if one is available.
public GoForward ( ) : bool
Résultat bool
        public bool GoForward()
        {
            if (CanGoForward)
            {
                WebNav.GoForward();
                return true;
            }
            return false;
        }