Vcl.DBGrids.TCustomDBGrid.OnDrawDataCell

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnDrawDataCell: TDrawDataCellEvent read FOnDrawDataCell  write FOnDrawDataCell; { obsolete }

C++

__property TDrawDataCellEvent OnDrawDataCell = {read=FOnDrawDataCell, write=FOnDrawDataCell};

Properties

Type Visibility Source Unit Parent
event protected
Vcl.DbGrids.pas
Vcl.DBGrids.hpp
Vcl.DBGrids TCustomDBGrid

Description

Occurs when the grid needs to paint a cell if the State property of Columns is csDefault.

Do not write an OnDrawDataCell event handler. OnDrawDataCell is obsolete and included for backward compatibility. Instead, write an OnDrawColumnCell event handler.

See Also