FMX.Grid.TGridModel.OnDrawColumnCell

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnDrawColumnCell: TDrawColumnCellEvent read FOnDrawColumnCell write FOnDrawColumnCell;

C++

__property TDrawColumnCellEvent OnDrawColumnCell = {read=FOnDrawColumnCell, write=FOnDrawColumnCell};

Properties

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

Description

Occurs when the presentation needs to draw a cell, and allows you to draw the cell yourself to customize it.

The handler of OnDrawColumnCell receives the following parameters:

OnDrawColumnCell occurs after OnDrawColumnBackground.

See Also