New to Telerik UI for WinFormsStart a free 30-day trial

Event arguments used in the HeatMapDefinition.

Definition

Namespace:Telerik.WinControls.UI.HeatMap

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class HeatMapCellIndexEventArgs : EventArgs

Inheritance: objectEventArgsHeatMapCellIndexEventArgs

Derived Classes: BaseHeatMapPaintingEventArgsHeatMapCellPaintedEventArgsHeatMapHeaderCellPaintedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the HeatMapCellIndexEventArgs class.

C#
public HeatMapCellIndexEventArgs(CellIndex index)
Parameters:indexCellIndex

The index of the cell.

Properties

Gets the cell column index. For row header cells the index is -1.

C#
public int ColumnIndex { get; }

Gets the cell index. The header cell index is -1.

C#
public virtual CellIndex Index { get; }

Gets the cell row index. For column header cells the index is -1.

C#
public int RowIndex { get; }