Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Frame.GoForward Method

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.

Navigates to the most recent item in forward navigation history, if a Frame manages its own navigation history.

public:
 virtual void GoForward() = GoForward;
void GoForward();
public void GoForward();
function goForward()
Public Sub GoForward ()

Examples

if (contentFrame.CanGoForward)
{
 contentFrame.GoForward();
}

Remarks

You should check that the CanGoForward property is true before you call GoForward. If you call GoForward while CanGoForward is false, an exception is thrown.

Applies to

See also


Feedback

Was this page helpful?