Class HTMLCellFormattingEventArgs
Provides event arguments for the HTMLCellFormatting event
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.Export.HTML
Assembly: TelerikData.dll
Syntax
public class HTMLCellFormattingEventArgs : EventArgs
Constructors
HTMLCellFormattingEventArgs(Int32, Int32, Type, GridViewCellInfo, CellElement, Object)
Declaration
public HTMLCellFormattingEventArgs(int gridRowIndex, int gridColumnIndex, Type gridRowInfoType, GridViewCellInfo gridViewCellInfo, CellElement htmlCellElement, object innerCellValue)
Parameters
System.Int32
gridRowIndex
|
System.Int32
gridColumnIndex
|
System.Type
gridRowInfoType
|
GridViewCellInfo
gridViewCellInfo
|
CellElement
htmlCellElement
|
System.Object
innerCellValue
|
Properties
CancelConditionalFormatting
Get or Set escaping for conditional formatting for this cell.
Declaration
public bool CancelConditionalFormatting { get; set; }
Property Value
System.Boolean
|
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
|
HTMLCellElement
Get html cell element for further formatting
Declaration
public CellElement HTMLCellElement { get; }
Property Value
CellElement
|
InnerCellValue
Get the inner cell value which reference the original grid's value
Declaration
public object InnerCellValue { get; }
Property Value
System.Object
|