FMX.Grid.TStringGrid.OnCreateCustomEditor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnCreateCustomEditor: TCreateCustomEditorEvent read FOnCreateCustomEditor write FOnCreateCustomEditor;

C++

__property OnCreateCustomEditor;

Properties

Type Visibility Source Unit Parent
event published
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TStringGrid

Description

Occurs before the creation of the default editor for cells.

FMX.Grid.TStringGrid.OnCreateCustomEditor inherits from FMX.Grid.TCustomGrid.OnCreateCustomEditor. All content below this line refers to FMX.Grid.TCustomGrid.OnCreateCustomEditor.

Occurs before the creation of the default editor for cells.

Write an OnCreateCustomEditor event handler to take specific actions when a custom editor is created for this grid.

This method is called once per column. If a custom editor is not required, just do nothing in this event handler and the default editor is created by the grid.

See Also