|
OnStatusTextChange: Called when the status text of the component changes. Informs
your application of the message that internet explorer would display in
the status bar.
procedure YourForm.OnStatusTextChange(
Sender: TObject;
const Text: WideString);
Arguments:
Sender
- The TWebBrowser component for which the event is being generated. Usage:
(Sender as TWebBrowser)
Text
- Text (message) to display in the status bar.
procedure TbrowserFrm.WB1StatusTextChange(Sender: TObject;
const Text: WideString);
begin
Statusbar1.Panels[0].Caption:= Text;
end;
|