Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TAbstractdxGridReportLink.DrawMode Property

Determines the manner in which a component is displayed in a report.

#Declaration

Delphi
property DrawMode: TdxGridDrawMode read; write; default gdmStrict;

#Property Value

Type Default
TdxGridDrawMode gdmStrict

#Remarks

Use the DrawMode property to select the manner in which a component is printed in a report.

Value Description
gdmStrict All colors look exactly as specified in the designer.
gdmOddEven Used to differentiate the colors of even and odd rows of your report. These colors are specified by the EvenColor (for even lines) and OddColor (for odd lines) properties.
gdmChess Used to differentiate report colors like a chess table. These colors are specified by the EvenColor (for even lines) and OddColor (for odd lines) properties.
gdmBorrowSource Used when the report color scheme should look exactly as in an application despite any changes made in the designer.

The default value of this property is gdmStrict.

See Also