![]() |
![]() ![]() ![]() |
IESniffer component.
|
type
|
TIEWebBrowserProgressChange = procedure(Sender: TObject; const URL: String; const Browser: IWebBrowser2;
|
Progress, ProgressMax: Integer) of object;
|
|
property OnWBProgressChange: TIEWebBrowserProgressChange
|
The OnWBProgressChange event occurs when the progress of a download operation is updated.
|
|
Write an OnWBProgressChange event handler to provide visual feedback about the download process. For example, an OnWBProgressChange event handler can update a TProgressBar component or display the number of bytes downloaded so far.
|
|
Browser is the IWebBrowser2 interface that is in the process of downloading a document.
|
|
Progress indicates how much of the document has already been downloaded, on a scale of 0 to ProgressMax. When Progress is 1, the operation is finished.
|
|
ProgressMax indicates the total size of the download operation.
|
|
![]() |
OnWBDocumentComplete, OnWBDownloadBegin and OnWBDownloadComplete events.
|