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.
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.