Class DataGridRowExcelExportingEventArgs
Provides data for the row exporting event.
Inheritance
System.Object
    DataGridRowExcelExportingEventArgs
  Namespace: Syncfusion.Maui.DataGrid.Exporting
Assembly: Syncfusion.Maui.DataGridExport.dll
Syntax
public sealed class DataGridRowExcelExportingEventArgs : EventArgs
  Constructors
DataGridRowExcelExportingEventArgs(RecordEntry, IRange, IWorksheet, ExportRowType, Object)
Initializes a new instance of the DataGridRowExcelExportingEventArgs class.
Declaration
public DataGridRowExcelExportingEventArgs(RecordEntry record, IRange rowRange, IWorksheet worksheet, ExportRowType exportRowType, object rowData = null)
  Parameters
| Type | Name | Description | 
|---|---|---|
| RecordEntry | record | The record entry to be exported.  | 
      
| IRange | rowRange | The row range to be exported.  | 
      
| IWorksheet | worksheet | The worksheet for exporting.  | 
      
| ExportRowType | exportRowType | The exporting row type.  | 
      
| System.Object | rowData | The row data to be exported.  | 
      
DataGridRowExcelExportingEventArgs(IRange, IWorksheet, ExportRowType)
Initializes a new instance of the DataGridRowExcelExportingEventArgs class.
Declaration
public DataGridRowExcelExportingEventArgs(IRange rowRange, IWorksheet worksheet, ExportRowType exportRowType)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IRange | rowRange | The row range to be exported.  | 
      
| IWorksheet | worksheet | The worksheet for exporting.  | 
      
| ExportRowType | exportRowType | The exporting row type.  | 
      
Properties
Range
Gets the exporting row range.
Declaration
public IRange Range { get; }
  Property Value
| Type | 
|---|
| IRange | 
Record
Gets the record of the exporting row.
Declaration
public RecordEntry Record { get; }
  Property Value
| Type | 
|---|
| RecordEntry | 
RowData
Gets the row data of the exporting row.
Declaration
public object RowData { get; }
  Property Value
| Type | 
|---|
| System.Object | 
RowType
Gets the exporting row type whether the row is caption summary row or record.
Declaration
public ExportRowType RowType { get; }
  Property Value
| Type | 
|---|
| ExportRowType | 
Worksheet
Gets the exporting excel worksheet.
Declaration
public IWorksheet Worksheet { get; }
  Property Value
| Type | 
|---|
| IWorksheet |