SHDocVw.TWebBrowser.Busy

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Busy: WordBool index 212 read GetWordBoolProp;

C++

__property System::WordBool Busy = {read=GetWordBoolProp, index=212, nodefault};

Properties

Type Visibility Source Unit Parent
property public
SHDocVw.pas
SHDocVw.hpp
SHDocVw TWebBrowser

Description

Indicates whether the WebBrowser control is in the middle of a navigation or downloading operation.

Read Busy to determine whether the Web browser component is currently navigating to a new URL or downloading a document. If Busy is true, you can interrupt the current operation using the Stop method before starting a new operation.

Note: The Web browser receives events at the beginning and end of each operation, as well as at discrete points during a download operation.

See Also