Skip to main content
All docs
V24.2

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

XRControl.XRControlStyles.OddStyle Property

Gets or sets the style applied to the control when it displays an odd record from the bound data source.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

[DefaultValue(null)]
public virtual XRControlStyle OddStyle { get; set; }

#Property Value

Type Default Description
XRControlStyle null

The name of the style from the Styles collection.

#Remarks

The odd style is the style applied to the control when it displays an odd record from the bound dataset. You can use the XtraReportBase.CurrentRowIndex property to define whether the row index.

if (CurrentRowIndex % 2 == 0) {  
    //Even  
}  
else {  
    //Odd  
} 

If the control consists of static rows, such as a static table with multiple rows, then even and odd styles do not apply.

You can find examples of even and odd styles in the following help sections:

See Also