Vcl.Grids.TCustomGrid.DrawCell

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DrawCell(ACol, ARow: Longint; ARect: TRect;  AState: TGridDrawState); virtual; abstract;

C++

virtual void __fastcall DrawCell(int ACol, int ARow, const System::Types::TRect &ARect, TGridDrawState AState) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TCustomGrid

Description

Provides the prototype for a method that draws the contents of a cell in the grid.

Descendants of TCustomGrid implement the DrawCell method to draw the contents of the cell. If the DefaultDrawing property is true, the background of the cell is painted before DrawCell is called, and the 3D effects of the fixed cells or the focus rectangle around the focused cell are drawn after DrawCell.

The ACol and ARow parameters give the column and row indexes of the cell that should be drawn.

The ARect parameter gives the boundaries of the cell in the coordinates of the canvas.

The AState parameter indicates whether the cell is selected, whether the cell has input focus, and whether the cell is in the fixed, non-scrolling portion of the grid.

See Also