API:Vcl.TabNotBk.TTabbedNotebook.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.TabNotBk.pas
Vcl.TabNotBk.hpp
Vcl.TabNotBk TTabbedNotebook

Description

Creates and initializes an instance of TCustomTabControl.

Vcl.TabNotBk.TTabbedNotebook.Create inherits from Vcl.ComCtrls.TCustomTabControl.Create. All content below this line refers to Vcl.ComCtrls.TCustomTabControl.Create.

Creates and initializes an instance of TCustomTabControl.

Call Create to instantiate a tab control at runtime. Tab controls placed on forms at design time are created automatically. Create calls the inherited Create method and sets the initial values for the tab control, including the creation of a tab list that contains the text strings for the tabs.

AOwner is a component, typically the form, that is responsible for freeing the tab control. It becomes the value of the Owner property.

See Also