Class HeatMapHeaderCellPaintingEventArgs
Event arguments used in the HeaderCellPainting event, which is fired before the painting of the row and column headers.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.HeatMap
Assembly: Telerik.WinControls.UI.dll
Syntax
public abstract class HeatMapHeaderCellPaintingEventArgs : BaseHeatMapPaintingEventArgs
Constructors
HeatMapHeaderCellPaintingEventArgs(CellIndex, Object, Graphics, RectangleF, Color, Color, Color, Int32, 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
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. |
System.Object
headerValue
The value of the row/column. |
System.Drawing.Graphics
graphics
The graphics object. |
System.Drawing.RectangleF
bounds
The row/column bounds. |
System.Drawing.Color
backColor
The row/column background color. |
System.Drawing.Color
foreColor
The row/column foreground color. |
System.Drawing.Color
borderColor
The row/column border color. |
System.Int32
borderWidth
The row/column border width. |
System.Drawing.Font
font
The row/column font. |
System.String
text
The row/column text. |
System.Drawing.ContentAlignment
textAlignment
The text alignment. |
System.Drawing.StringFormatFlags
formatFlags
The format flags. |
System.Drawing.StringTrimming
trimming
The string trimming. |
Properties
HeaderValue
Gets the value of the row/column.
Declaration
public virtual object HeaderValue { get; }
Property Value
System.Object
|