Skip to main content
A newer version of this page is available. .

GridViewPrintAppearances.EvenRow Property

Gets the appearance settings used to paint the even data rows when the grid control is printed.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

public AppearanceObject EvenRow { get; }

Property Value

Type Description
AppearanceObject

A AppearanceOptions object which provides the appearance settings used to paint even data rows when the grid control is printed.

Remarks

The EvenRow property specifies the appearance settings used to paint the data cells within even rows when the grid is printed. If this property is not specified, the appearance of the data cells within even rows is specified by the GridViewPrintAppearances.Row property.

The appearance setting provided by the EvenRow property are used to paint even rows when the grid control is printed if the GridOptionsPrint.EnableAppearanceEvenRow property is set to true.

To specify the appearance of odd rows when the grid is printed, use the GridViewPrintAppearances.OddRow property.

For more information on appearances, see the Appearance and Conditional Formatting topic.

See Also