Vcl.Grids.TCustomGrid.CreateEditor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function CreateEditor: TInplaceEdit; virtual;

C++

virtual TInplaceEdit* __fastcall CreateEditor();

Properties

Type Visibility Source Unit Parent
function protected
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TCustomGrid

Description

Creates the inplace editor control.

Grid controls call CreateEditor internally the first time the grid goes into edit mode. CreateEditor is exposed as a protected method so that descendants of TCustomGrid can substitute a specialized descendant of TInplaceEdit to handle cell editing.

See Also