Class DataGridDetailsViewExcelExportOptions
Provides data for the DataGridDetailsViewExcelExport event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.DataGrid.Export
Assembly: Syncfusion.GridExport.WinUI.dll
Syntax
public sealed class DataGridDetailsViewExcelExportOptions : GridCancelEventArgs
Constructors
DataGridDetailsViewExcelExportOptions(Object, String, Int32, List<String>, SfDataGrid)
Declaration
public DataGridDetailsViewExcelExportOptions(object nodeEntry, string relationalColumn, int childLevel, List<string> excludedColumns, SfDataGrid dataGrid)
Parameters
Type | Name | Description |
---|---|---|
System.Object | nodeEntry | |
System.String | relationalColumn | |
System.Int32 | childLevel | |
System.Collections.Generic.List<System.String> | excludedColumns | |
SfDataGrid | dataGrid |
Properties
ExcludedColumns
Gets or sets the list of columns that should be excluded when exporting the DataGrid.
Declaration
public List<string> ExcludedColumns { get; }
Property Value
Type |
---|
System.Collections.Generic.List<System.String> |
Level
Gets the level of the DataGrid being exported.
Declaration
public int Level { get; }
Property Value
Type |
---|
System.Int32 |
Remarks
The level of the DataGrid is 0 for the parent DataGrid, 1 for the first level nested DataGrid, and so on.
NodeEntry
Gets the node entry for the cell being exported.
Declaration
public object NodeEntry { get; }
Property Value
Type |
---|
System.Object |
RelationalColumn
Gets the relational column for the cell being exported.
Declaration
public string RelationalColumn { get; }
Property Value
Type |
---|
System.String |