Class DataGridRowPdfExportingEventArgs
Provides data for the row exporting event.
Inheritance
Namespace: Syncfusion.Maui.DataGrid.Exporting
Assembly: Syncfusion.Maui.DataGridExport.dll
Syntax
public sealed class DataGridRowPdfExportingEventArgs : EventArgs
Constructors
DataGridRowPdfExportingEventArgs(RecordEntry, PdfGridRow, PdfGrid, ExportRowType, PdfGridCellStyle, Object)
Initializes a new instance of the DataGridRowPdfExportingEventArgs class.
Declaration
public DataGridRowPdfExportingEventArgs(RecordEntry record, PdfGridRow pdfRow, PdfGrid pdfGrid, ExportRowType exportRowType, PdfGridCellStyle exportCellStyle, object rowData = null)
Parameters
Type | Name | Description |
---|---|---|
RecordEntry | record | The record entry of the row to be exported. |
PdfGridRow | pdfRow | The Pdf row to be exported. |
PdfGrid | pdfGrid | The Pdf grid to be exported. |
ExportRowType | exportRowType | The type of the row to be exported. |
PdfGridCellStyle | exportCellStyle | The type of the cell to be exported. |
System.Object | rowData | The row data of the row to be exported. |
DataGridRowPdfExportingEventArgs(PdfGridRow, PdfGrid, ExportRowType, PdfGridCellStyle)
Initializes a new instance of the DataGridRowPdfExportingEventArgs class.
Declaration
public DataGridRowPdfExportingEventArgs(PdfGridRow pdfRow, PdfGrid pdfGrid, ExportRowType exportRowType, PdfGridCellStyle exportCellStyle)
Parameters
Type | Name | Description |
---|---|---|
PdfGridRow | pdfRow | The Pdf row to be exported. |
PdfGrid | pdfGrid | The Pdf grid to be exported. |
ExportRowType | exportRowType | The type of the row to be exported. |
PdfGridCellStyle | exportCellStyle | The type of the cell to be exported. |
Properties
PdfGrid
Gets or private sets the current exporting PdfGrid.
Declaration
public PdfGrid PdfGrid { get; }
Property Value
Type | Description |
---|---|
PdfGrid | The current exporting PdfGrid. |
PdfRow
Gets the exporting PdfRow
Declaration
public PdfGridRow PdfRow { get; }
Property Value
Type | Description |
---|---|
PdfGridRow | The exporting PdfRow. |
Record
Gets or private sets the record of the exporting row.
Declaration
public RecordEntry Record { get; }
Property Value
Type | Description |
---|---|
RecordEntry | The record of the exporting row. |
RowData
Gets or private sets the row data of the exporting row.
Declaration
public object RowData { get; }
Property Value
Type | Description |
---|---|
System.Object | The row data of the exporting row. |
RowType
Gets or private sets the exporting row type, whether the row is caption summary row or record.
Declaration
public ExportRowType RowType { get; }
Property Value
Type | Description |
---|---|
ExportRowType | The ExportRowType representing the type of row being exported. |