SHDocVw.TWebBrowser.OnProgressChange

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnProgressChange: TWebBrowserProgressChange read FOnProgressChange write FOnProgressChange;

C++

__property TWebBrowserProgressChange OnProgressChange = {read=FOnProgressChange, write=FOnProgressChange};

Properties

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

Description

Occurs when the progress of a download operation is updated.

Write an OnProgressChange event handler to provide visual feedback about the download process. For example, an OnProgressChange event handler can update a TProgressBar component or display the number of bytes downloaded so far.

See Also