WebBrowser.CanGoForward Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether there is a document to navigate forward to.
public:
property bool CanGoForward { bool get(); };
public bool CanGoForward { get; }
member this.CanGoForward : bool
Public ReadOnly Property CanGoForward As Boolean
Property Value
A Boolean value that indicates whether there is a document to navigate forward to.
Examples
The following example shows how to navigate forward to the next HTML document by calling GoForward. The example first checks that there are documents to navigate forward to by checking CanGoForward.
private void forwardButton_Click(object sender, RoutedEventArgs e)
{
// Navigate to the next HTML document, if there is one
if (this.webBrowser.CanGoForward)
{
this.webBrowser.GoForward();
}
}
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.