[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Draws the fixed text at the specified row and column numbers
Source position: dbgrids.pas line 449
protected procedure TCustomDBGrid.DrawFixedText( |
aCol: Integer; |
aRow: Integer; |
aRect: TRect; |
aState: TGridDrawState |
); |
aCol |
|
Column number to draw |
aRow |
|
Row number to draw |
aRect |
|
Canvas rectangle for the drawing operation |
aState |
|
Drawing state for the operation |
DrawFixedText is a procedure used to draw a cell with fixed text at the specified row and column numbers. DrawFixedText calls the DrawIndicator method for the active record when aCol contains 0 (zero) and Options incudes the value dgIndicator. Otherwise, the DrawColumnText method is called using the aguments passed to the method.
DrawFixedText is used in the implementation for the DefaultDrawCell method.
lazarus-ccr.sourceforge.net |