Class HeatMapCellIndexEventArgs
Event arguments used in the HeatMapDefinition.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.HeatMap
Assembly: Telerik.WinControls.UI.dll
Syntax
public class HeatMapCellIndexEventArgs : EventArgs
Constructors
HeatMapCellIndexEventArgs(CellIndex)
Initializes a new instance of the HeatMapCellIndexEventArgs class.
Declaration
public HeatMapCellIndexEventArgs(CellIndex index)
Parameters
CellIndex
index
The index of the cell. |
Properties
ColumnIndex
Gets the cell column index. For row header cells the index is -1.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
|
Index
Gets the cell index. The header cell index is -1.
Declaration
public virtual CellIndex Index { get; }
Property Value
CellIndex
|
RowIndex
Gets the cell row index. For column header cells the index is -1.
Declaration
public int RowIndex { get; }
Property Value
System.Int32
|