FMX.WebBrowser.TCustomWebBrowser.OnDidStartLoad

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnDidStartLoad: TWebBrowserDidStartLoad read GetOnDidStartLoad write SetOnDidStartLoad;

C++

__property TWebBrowserDidStartLoad OnDidStartLoad = {read=GetOnDidStartLoad, write=SetOnDidStartLoad};

Properties

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

Description

Occurs when the loading action of a local file or URL address starts.

OnDidStartLoad also occurs when the StartLoading method is called.

Write an event handler for OnDidStartLoad to specify what happens when a local file or a URL address starts to load.

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

See Also