Vcl.Grids.TCustomGrid.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TCustomGrid

Description

Creates an instance of TCustomGrid.

Call Create to create a grid control at runtime. Grid controls placed on a form at design time are created automatically.

Owner is a component that is responsible for freeing the grid and for initiating the streaming process when it is saved to a form file.

See Also