WebBrowser.CanGoForward Property
.NET Framework 3.5
Updated: July 2008
Gets a value that indicates whether there is a document to navigate forward to.
Assembly: PresentationFramework (in PresentationFramework.dll)
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(); } }
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.