WebBrowser.CanGoForward Property

Definition

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