SHDocVw.TWebBrowser.OnNavigateComplete2

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnNavigateComplete2: TWebBrowserNavigateComplete2 read FOnNavigateComplete2 write FOnNavigateComplete2;

C++

__property TWebBrowserNavigateComplete2 OnNavigateComplete2 = {read=FOnNavigateComplete2, write=FOnNavigateComplete2};

Properties

Type Visibility Source Unit Parent
event published
SHDocVw.pas
SHDocVw.hpp
SHDocVw TWebBrowser

Description

Occurs immediately after the Web browser successfully navigates to a new location.

Write an OnNavigateComplete2 event handler to take specific action when the Web browser successfully navigates to a new resource. The event can occur before the document is fully downloaded, but when it occurs at least part of the document must be received and a viewer for the document created.

Note: Unlike the OnDownloadComplete event, OnNavigateComplete2 does not occur if the operation is not successful.

See Also