Vcl.Grids.TInplaceEdit.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

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

Properties

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

Description

Creates an instance of TInplaceEdit.

Do not create instances of TInplaceEdit. These are created automatically by the grid that uses the editor.

AOwner specifies the Owner for the editor. This is the component that is responsible for freeing the TInplaceEdit instance.

Create overrides the default constructor to make sure that the control has no border to provide a visual indication that the control exists.

See Also