Class
HTMLCellFormattingEventArgs

Provides event arguments for the HTMLCellFormatting event

Definition

Namespace:Telerik.WinControls.UI.Export.HTML

Assembly:TelerikData.dll

Syntax:

cs-api-definition
public class HTMLCellFormattingEventArgs : EventArgs

Inheritance: objectEventArgsHTMLCellFormattingEventArgs

Inherited Members EventArgs.Empty

Constructors

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

Declaration

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

Parameters

gridRowIndex

int

gridColumnIndex

int

gridRowInfoType

Type

gridViewCellInfo

GridViewCellInfo

htmlCellElement

CellElement

innerCellValue

object

Properties

CancelConditionalFormatting

Get or Set escaping for conditional formatting for this cell.

Declaration

cs-api-definition
public bool CancelConditionalFormatting { get; set; }

Property Value

bool

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

HTMLCellElement

Get html cell element for further formatting

Declaration

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

Property Value

CellElement

InnerCellValue

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

Declaration

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

Property Value

object