Vcl.Tabs.TScroller.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.Tabs.pas
Vcl.Tabs.hpp
Vcl.Tabs TScroller

Description

Creates an instance of TScroller.

Call TScroller to create an instance of TScroller at runtime. TScroller allocates the memory for the TScroller object and initializes

Width to 24 and Height to 13

Min and Max to 0

Position to 0

Change to 1

The AOwner parameter specifies the component (usually the form) that is responsible for freeing the scroller.

See Also