FMX.Grid.TCustomGrid.OnCreateCustomEditor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnCreateCustomEditor: TCreateCustomEditorEvent read GetOnCreateCustomEditor write SetOnCreateCustomEditor;

C++

__property TCreateCustomEditorEvent OnCreateCustomEditor = {read=GetOnCreateCustomEditor, write=SetOnCreateCustomEditor};

Properties

Type Visibility Source Unit Parent
event public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TCustomGrid


Description

Occurs before the creation of the editor for cells in a column.

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

This event is called every time when the grid activates a cell editor. If a custom editor is not required, just do nothing in this event handler and the default editor is created.

The OnCreateCustomEditor event can by called from a presentation (depends on the implementation) to create a custom defined cell editors. Since the presentation does not know about a TCustomGrid object, the presentation calls TGridModel.OnCreateCustomEditor from the Model. For this reason, the TCustomGrid.OnCreateCustomEditor event handler is always the same as the TGridModel.OnCreateCustomEditor event handler of the Model.

See Also