![]() |
![]() ![]() ![]() |
IESniffer component.
|
type
|
TIEWebBrowserStatusTextChange = procedure(Sender: TObject; const URL: String; const Browser: IWebBrowser2;
|
var Text: WideString) of object;
|
|
property OnWBStatusTextChange: TIEWebBrowserStatusTextChange;
|
The OnStatusTextChange occurs when the text displayed in the Internet Explorer's status bar changes.
|
|
Browser is the IWebBrowser2 interface that needs a new window to display its target resource.
|
|
Text is the text which currently displayed in the status line of Browser. You can change this value and update the text visible in IE status bar.
|
procedure TForm1.IESniffer1WBStatusTextChange(Sender: TObject;
|
const URL: String; const Browser: IWebBrowser2; const Text: WideString);
|
begin
|
StatusLabel.Caption := Text;
|
end;
|
OnWBTitleChange event.
|