FMX.Grid.TCustomGrid.OnCreateCustomEditor
Delphi
property OnCreateCustomEditor: TCreateCustomEditorEvent read FOnCreateCustomEditor write FOnCreateCustomEditor;
C++
__property TCreateCustomEditorEvent OnCreateCustomEditor = {read=FOnCreateCustomEditor, write=FOnCreateCustomEditor};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
event | public | FMX.Grid.pas FMX.Grid.hpp |
FMX.Grid | TCustomGrid |
Description
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.