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

Definition

Namespace:Telerik.WinControls.UI.HeatMap

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public abstract class BaseHeatMapPaintingEventArgs : HeatMapCellIndexEventArgs

Inheritance: objectEventArgsHeatMapCellIndexEventArgsBaseHeatMapPaintingEventArgs

Derived Classes: HeatMapCellPaintingEventArgsHeatMapHeaderCellPaintingEventArgs

Inherited Members HeatMapCellIndexEventArgs.IndexHeatMapCellIndexEventArgs.RowIndexHeatMapCellIndexEventArgs.ColumnIndexEventArgs.Empty

Constructors

Event arguments used in the painting events of RadHeatMap.

C#
public BaseHeatMapPaintingEventArgs(CellIndex cellIndex, Graphics graphics, RectangleF bounds, Color backColor, Color foreColor, Color borderColor, int borderWidth, Font font, string text, ContentAlignment textAlignment, StringFormatFlags formatFlags, StringTrimming trimming)
Parameters:cellIndexCellIndex

The cell index.

graphicsGraphics

The graphics object.

boundsRectangleF

The bounds.

backColorColor

The background color.

foreColorColor

The foreground color.

borderColorColor

The border color.

borderWidthint

The border width.

fontFont

The font.

textstring

The text.

textAlignmentContentAlignment

The text alignment.

formatFlagsStringFormatFlags

The format flags.

trimmingStringTrimming

The string trimming.

Properties

Gets or sets the background color.

C#
public Color BackColor { get; set; }

Gets or sets the border color.

C#
public Color BorderColor { get; set; }

Gets or sets the border width.

C#
public int BorderWidth { get; set; }

Gets the paint bounds.

C#
public RectangleF Bounds { get; set; }

Gets or sets the font.

C#
public Font Font { get; set; }

Gets or sets the foreground color.

C#
public Color ForeColor { get; set; }

Gets or sets the string format flags. For example by setting the NoWrap the text wrapping can be controlled.

C#
public StringFormatFlags FormatFlags { get; set; }

Gets the Graphics object.

C#
public Graphics Graphics { get; }

Gets or sets a value that indicates whether the event handler has completely handled the event or whether the system should continue its own processing.

C#
public bool Handled { get; set; }
Property Value:

true if the event has been completely handled; otherwise, false.

Gets or sets the text.

C#
public string Text { get; set; }

Gets or sets the text alignment.

C#
public ContentAlignment TextAlignment { get; set; }

Gets or sets the string trimming. The default is EllipsisCharacter.

C#
public StringTrimming Trimming { get; set; }