Class
HeatMapHeaderCellPaintingEventArgs

Event arguments used in the HeaderCellPainting event, which is fired before the painting of the row and column headers.

Definition

Namespace:Telerik.WinControls.UI.HeatMap

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public abstract class HeatMapHeaderCellPaintingEventArgs : BaseHeatMapPaintingEventArgs

Inheritance: objectEventArgsHeatMapCellIndexEventArgsBaseHeatMapPaintingEventArgsHeatMapHeaderCellPaintingEventArgs

Derived Classes: HeatMapColumnHeaderCellPaintingEventArgsHeatMapRowHeaderCellPaintingEventArgs

Inherited Members BaseHeatMapPaintingEventArgs.HandledBaseHeatMapPaintingEventArgs.GraphicsBaseHeatMapPaintingEventArgs.BoundsBaseHeatMapPaintingEventArgs.BackColorBaseHeatMapPaintingEventArgs.ForeColorBaseHeatMapPaintingEventArgs.BorderColorBaseHeatMapPaintingEventArgs.BorderWidthBaseHeatMapPaintingEventArgs.FontBaseHeatMapPaintingEventArgs.TextBaseHeatMapPaintingEventArgs.TextAlignmentBaseHeatMapPaintingEventArgs.TrimmingBaseHeatMapPaintingEventArgs.FormatFlagsHeatMapCellIndexEventArgs.IndexHeatMapCellIndexEventArgs.RowIndexHeatMapCellIndexEventArgs.ColumnIndexEventArgs.Empty

Constructors

HeatMapHeaderCellPaintingEventArgs(CellIndex, object, Graphics, RectangleF, Color, Color, Color, int, Font, string, ContentAlignment, StringFormatFlags, StringTrimming)

Event arguments used in the HeaderCellPainting event, which is fired before the painting of the row and column headers.

Declaration

cs-api-definition
public HeatMapHeaderCellPaintingEventArgs(CellIndex cellIndex, object headerValue, Graphics graphics, RectangleF bounds, Color backColor, Color foreColor, Color borderColor, int borderWidth, Font font, string text, ContentAlignment textAlignment, StringFormatFlags formatFlags, StringTrimming trimming)

Parameters

cellIndex

CellIndex

The index of the row/column.

headerValue

object

The value of the row/column.

graphics

Graphics

The graphics object.

bounds

RectangleF

The row/column bounds.

backColor

Color

The row/column background color.

foreColor

Color

The row/column foreground color.

borderColor

Color

The row/column border color.

borderWidth

int

The row/column border width.

font

Font

The row/column font.

text

string

The row/column text.

textAlignment

ContentAlignment

The text alignment.

formatFlags

StringFormatFlags

The format flags.

trimming

StringTrimming

The string trimming.

Properties

HeaderValue

Gets the value of the row/column.

Declaration

cs-api-definition
public virtual object HeaderValue { get; }

Property Value

object