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
Samarbeid med oss på GitHub
Du finner kilden for dette innholdet på GitHub. Der du også kan opprette og se gjennom problemer og pull-forespørsler. Hvis du vil ha mer informasjon, kan du se vår bidragsyterveiledning.