TAbstractdxGridReportLink.DrawMode Property
Determines the manner in which a component is displayed in a report.
Declaration
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