Skip to main content

DevExpress v24.1 Update — Your Feedback Matters

Our What's New in v24.1 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

XtraReportBase.DataSourceRowChanged Event

Occurs when the current row in the report’s data source has been changed.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.1.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

public event DataSourceRowEventHandler DataSourceRowChanged

#Event Data

The DataSourceRowChanged event's data class is DataSourceRowEventArgs. The following properties provide information specific to this event:

Property Description
CurrentRow Gets the row currently being accessed in the report’s data source, during the creation of the report’s preview.
RowCount Gets the total number of rows traversed in the data source during the report’s creation, up to the current point.

#Remarks

This event is raised when the current row in a report’s data source changes during the process of creating the report’s document.

See Also