iesniffer OnWBStatusTextChange event
Return to Introduction  Previous page  Next page
Applies to
acIESniffer component.  

Declaration
type  
  TacIEWebBrowserStatusTextChange = procedure(Sender: TObject; const URL: Stringconst Browser: IWebBrowser2;  
    var Text: WideString) of object;  
 
property OnWBStatusTextChange: TacIEWebBrowserStatusTextChange;  

Description
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.  

Example
procedure TForm1.acIESniffer1WBStatusTextChange(Sender: TObject;  
  const URL: Stringconst Browser: IWebBrowser2; const Text: WideString);  
begin  
  StatusLabel.Caption := Text;  
end;  

See also
OnWBTitleChange event.