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 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