Class TreeGridCellExcelExportingEventArgs
Provides data for the TreeGridCellExcelExportingEventHandler.
Namespace: Syncfusion.UI.Xaml.TreeGrid.Converter
Assembly: Syncfusion.SfGridConverter.UWP.dll
Syntax
public sealed class TreeGridCellExcelExportingEventArgs : GridHandledEventArgs
Constructors
TreeGridCellExcelExportingEventArgs(IRange, TreeGridCellType, Object, Object, String, Object, TreeGridExportMode)
Declaration
public TreeGridCellExcelExportingEventArgs(IRange exportRange, TreeGridCellType exportCellType, object cellValue, object exportNode, string columnName, object treeGrid, TreeGridExportMode exportMode)
Parameters
Type | Name | Description |
---|---|---|
IRange | exportRange | |
TreeGridCellType | exportCellType | |
System.Object | cellValue | |
System.Object | exportNode | |
System.String | columnName | |
System.Object | treeGrid | |
TreeGridExportMode | exportMode |
Properties
CellType
Gets a value that specifies the export CellType.
Declaration
public TreeGridCellType CellType { get; }
Property Value
Type | Description |
---|---|
TreeGridCellType | One of the TreeGridCellType enumeration that specifies the export CellType. The default mode is HeaderCell. |
CellValue
Gets the value of the cell being exported.
Declaration
public object CellValue { get; }
Property Value
Type |
---|
System.Object |
ColumnName
Gets the name of the column for the cell being exported.
Declaration
public string ColumnName { get; }
Property Value
Type |
---|
System.String |
ExportMode
Gets or sets a value that specifies the ExportMode.
Declaration
public TreeGridExportMode ExportMode { get; set; }
Property Value
Type | Description |
---|---|
TreeGridExportMode | One of the TreeGridExportMode enumeration that specifies the ExportMode. The default mode is Text. |
Node
Gets a value that represents the node entry of the SfTreeGrid.
Declaration
public object Node { get; }
Property Value
Type |
---|
System.Object |
Range
Gets or sets the range of cells to be exported.
Declaration
public IRange Range { get; set; }
Property Value
Type |
---|
IRange |