FMX.WebBrowser.TCustomWebBrowser.OnDidFinishLoad

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnDidFinishLoad: TWebBrowserDidFinishLoad read GetOnDidFinishLoad write SetOnDidFinishLoad;

C++

__property TWebBrowserDidFinishLoad OnDidFinishLoad = {read=GetOnDidFinishLoad, write=SetOnDidFinishLoad};

Properties

Type Visibility Source Unit Parent
event public
FMX.WebBrowser.pas
FMX.WebBrowser.hpp
FMX.WebBrowser TCustomWebBrowser

Description

Occurs when the loading of a local file or a URL address is complete.

OnDidFinishLoad also occurs when the FinishLoading method is called.

Write an event handler for OnDidFinishLoad to specify what happens when a local file or a URL address loads.

Note: Read FMX.WebBrowser.TCustomWebBrowser.URL to see how to load a local file.

See Also