Share via


DWebBrowserEvents2::NavigateComplete2 (Windows Embedded CE 6.0)

1/6/2010

The NavigateComplete2 event method fires after navigation to a link is completed on either a window or frameset element.

Syntax

void NavigateComplete2(
  IDispatch* pDisp,
  VARIANT* pvtURL 
);

Parameters

  • pDisp
    [in] Pointer to the IDispatch interface for the WebBrowser object that represents the window or frame.
  • pvtURL
    [in] Pointer to a VARIANT structure of type VT_BSTR that contains the URL or Universal Naming Convention (UNC) file name that was navigated to.

Return Value

None.

Event DISPID

DISPID_NAVIGATECOMPLETE2

The DISPID for this event is defined in piedocvw.h. Use this value to identify the event handler when implementing IDispatch::Invoke.

Requirements

Header exdisp.h
Library shdocvw.lib
Windows Embedded CE Windows Embedded CE 6.0 and later

See Also

Reference

DWebBrowserEvents2
DWebBrowserEvents2::BeforeNavigate2