Skip to main content

CustomizeCellEventArgsExtended.Row Property

Allows you to get information on the currently processed row object.

Namespace: DevExpress.Export

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public IRowBase Row { get; set; }

Property Value

Type Description
DevExpress.XtraExport.Helpers.IRowBase

The currently processed row object.

Remarks

The Row property allows you to get details on the currently processed row object. Instances of different classes are passed as the Row event parameter in different DevExpress controls (see the table below). You may type cast the Row property value to a corresponding class to obtain more information on the row being processed.

Control Row Objects
Windows Forms GridControl DataRowImplementer, GroupRowImplementer
Windows Forms TreeList TreeListNodeImplementer
Windows Forms PivotGridControl PivotRowImplementer
WPF GridControl, TreeListControl RowBaseWrapper, GroupRowWrapper, TreeListNodeWrapper
ASP ASPxGridView GridXlsExportRowBase, GridViewXlsExportGroupRow
See Also