Class
CSVCellFormattingEventArgs

Provides event arguments for the CSVCellFormatting event

Definition

Namespace:Telerik.WinControls.UI.Export.CSV

Assembly:TelerikData.dll

Syntax:

cs-api-definition
public class CSVCellFormattingEventArgs : EventArgs

Inheritance: objectEventArgsCSVCellFormattingEventArgs

Inherited Members EventArgs.Empty

Constructors

CSVCellFormattingEventArgs(int, int, Type, GridViewCellInfo, CellElement, object)

Declaration

cs-api-definition
public CSVCellFormattingEventArgs(int gridRowIndex, int gridColumnIndex, Type gridRowInfoType, GridViewCellInfo gridViewCellInfo, CellElement csvCellElement, object innerCellValue)

Parameters

gridRowIndex

int

gridColumnIndex

int

gridRowInfoType

Type

gridViewCellInfo

GridViewCellInfo

csvCellElement

CellElement

innerCellValue

object

Properties

CSVCellElement

Get csv cell element object for further formatting

Declaration

cs-api-definition
public CellElement CSVCellElement { get; }

Property Value

CellElement

GridCellInfo

Get a reference to the source grid's cell.

Declaration

cs-api-definition
public GridViewCellInfo GridCellInfo { get; }

Property Value

GridViewCellInfo

GridColumnIndex

Get source grid's column index

Declaration

cs-api-definition
public int GridColumnIndex { get; }

Property Value

int

GridRowIndex

Get source grid's row index

Declaration

cs-api-definition
public int GridRowIndex { get; }

Property Value

int

GridRowInfoType

Get source grid's row type

Declaration

cs-api-definition
public Type GridRowInfoType { get; }

Property Value

Type

InnerCellValue

Get the inner cell value which reference the original grid's value

Declaration

cs-api-definition
public object InnerCellValue { get; }

Property Value

object