corelibraries-devexpress-dot-export-dot-customizecelleventargsextended.md
Allows you to get information on the currently processed row object.
Namespace : DevExpress.Export
Assembly : DevExpress.Printing.v25.2.Core.dll
NuGet Package : DevExpress.Printing.Core
public IRowBase Row { get; set; }
Public Property Row As IRowBase
| Type | Description |
|---|---|
| DevExpress.XtraExport.Helpers.IRowBase |
The currently processed row object.
|
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
CustomizeCellEventArgsExtended Class