Vcl.DBCGrids.TDBCtrlGrid.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.DbCGrids.pas
Vcl.DBCGrids.hpp
Vcl.DBCGrids TDBCtrlGrid

Description

Creates and initializes an instance of TDBCtrlGrid.

Call Create to create and initialize a TDBCtrlGrid object at runtime.TDBCtrlGrid objects placed in a form at design time are created automatically.

AOwner is a component that becomes the value of the Owner property. This component, typically the form, is responsible for freeing the TDBCtrlGrid instance.

See Also