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
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.