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

DataSourceRowEventArgs(Int32, Int32) Constructor

Initializes a new instance of the DataSourceRowEventArgs class.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v20.2.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.Reporting.Core

Declaration

public DataSourceRowEventArgs(
    int currentRow,
    int rowCount
)

Parameters

Name Type Description
currentRow Int32

The current row in the report’s data source.

rowCount Int32

The total number of rows retrieved up to the point at which the XtraReportBase.DataSourceRowChanged event occurs.

Remarks

It’s not necessary to call this constructor manually. The DataSourceRowEventArgs object is created automatically when the XtraReportBase.DataSourceRowChanged event occurs.

See Also