Class ExportingToExcelEventArgs
This class holds all the properties which helps to export the templated cell.
Inheritance
System.Object
System.EventArgs
ExportingToExcelEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Controls.PivotGrid.Converter
Assembly: Syncfusion.PivotGridConverter.Wpf.dll
Syntax
public class ExportingToExcelEventArgs : EventArgs
Constructors
ExportingToExcelEventArgs(IRange, PivotCellInfo, Int32, Int32)
A constructor method that executes on instantiation of ExportingToExcelEventArgs class.
Declaration
public ExportingToExcelEventArgs(IRange excelCell, PivotCellInfo cellInfo, int rowIndex, int colIndex)
Parameters
Type | Name | Description |
---|---|---|
IRange | excelCell | Represents the cell range. |
PivotCellInfo | cellInfo | Provides specific cell information. |
System.Int32 | rowIndex | Row index of the cell. |
System.Int32 | colIndex | Column index of the cell. |
Properties
ColumnIndex
Gets the column index of the cell.
Declaration
public int ColumnIndex { get; }
Property Value
Type |
---|
System.Int32 |
ExcelCellInfo
Gets the cell range of the Excel sheet.
Declaration
public IRange ExcelCellInfo { get; }
Property Value
Type |
---|
IRange |
Handled
Gets or sets whether the event should be handled or not.
Declaration
public bool Handled { get; set; }
Property Value
Type |
---|
System.Boolean |
PivotCellInfo
Gets the Pivot cell information such as FormattedText, Key, Value, CellRange, etc...
Declaration
public PivotCellInfo PivotCellInfo { get; }
Property Value
Type |
---|
PivotCellInfo |
RowIndex
Gets the row index of the cell.
Declaration
public int RowIndex { get; }
Property Value
Type |
---|
System.Int32 |