Vcl.ComCtrls.TCustomUpDown.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

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

Description

Creates and initializes an instance of TCustomUpDown.

Call Create to instantiate an up-down control at runtime. Up-down controls placed on forms at design time are created automatically.AOwner is a component, typically the form, that is responsible for freeing the up-down control. It becomes the value of the Owner property.

See Also