Vcl.Grids.TCustomGrid.InplaceEditor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property InplaceEditor: TInplaceEdit read FInplaceEdit;

C++

__property TInplaceEdit* InplaceEditor = {read=FInplaceEdit};

Properties

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

Description

Designates the edit control the grid uses to allow users to edit the contents of the selected cell.

Read InplaceEditor to gain direct access to the edit control that sits on top of the selected cell when the grid is in edit mode. The inplace editor is created the first time the grid is put in edit mode. It is not destroyed until the grid is destroyed. The grid moves the editor when the selected cell changes. The grid hides the editor's window when the grid goes out of edit mode.

See Also