Vcl.ComCtrls.TProgressBar.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual TProgressBar(System::Classes::TComponent* AOwner);
/* TWinControl.CreateParented */ inline __fastcall TProgressBar(HWND ParentWindow) : Vcl::Controls::TWinControl(ParentWindow) { }

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TProgressBar

Description

Creates an instance of TProgressBar.

Call Create to create a progress bar at runtime. Progress bars placed on forms at design time are created automatically.

AOwner is another component, typically the form, that is responsible for freeing the progress bar. It becomes the value of the Owner property.

See Also

Code Examples