Class CSVCellFormattingEventArgs
Provides event arguments for the CSVCellFormatting event
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.Export.CSV
Assembly: TelerikData.dll
Syntax
public class CSVCellFormattingEventArgs : EventArgs
Constructors
CSVCellFormattingEventArgs(Int32, Int32, Type, GridViewCellInfo, CellElement, Object)
Declaration
public CSVCellFormattingEventArgs(int gridRowIndex, int gridColumnIndex, Type gridRowInfoType, GridViewCellInfo gridViewCellInfo, CellElement csvCellElement, object innerCellValue)
Parameters
System.Int32
gridRowIndex
|
System.Int32
gridColumnIndex
|
System.Type
gridRowInfoType
|
GridViewCellInfo
gridViewCellInfo
|
CellElement
csvCellElement
|
System.Object
innerCellValue
|
Properties
CSVCellElement
Get csv cell element object for further formatting
Declaration
public CellElement CSVCellElement { get; }
Property Value
CellElement
|
GridCellInfo
Get a reference to the source grid's cell.
Declaration
public GridViewCellInfo GridCellInfo { get; }
Property Value
GridViewCellInfo
|
GridColumnIndex
Get source grid's column index
Declaration
public int GridColumnIndex { get; }
Property Value
System.Int32
|
GridRowIndex
Get source grid's row index
Declaration
public int GridRowIndex { get; }
Property Value
System.Int32
|
GridRowInfoType
Get source grid's row type
Declaration
public Type GridRowInfoType { get; }
Property Value
System.Type
|
InnerCellValue
Get the inner cell value which reference the original grid's value
Declaration
public object InnerCellValue { get; }
Property Value
System.Object
|