Class
BaseHeatMapPaintingEventArgs

Definition

Namespace:Telerik.WinControls.UI.HeatMap

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public abstract class BaseHeatMapPaintingEventArgs : HeatMapCellIndexEventArgs

Inheritance: objectEventArgsHeatMapCellIndexEventArgsBaseHeatMapPaintingEventArgs

Derived Classes: HeatMapCellPaintingEventArgsHeatMapHeaderCellPaintingEventArgs

Inherited Members HeatMapCellIndexEventArgs.IndexHeatMapCellIndexEventArgs.RowIndexHeatMapCellIndexEventArgs.ColumnIndexEventArgs.Empty

Constructors

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

Event arguments used in the painting events of RadHeatMap.

Declaration

cs-api-definition
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

cellIndex

CellIndex

The cell index.

graphics

Graphics

The graphics object.

bounds

RectangleF

The bounds.

backColor

Color

The background color.

foreColor

Color

The foreground color.

borderColor

Color

The border color.

borderWidth

int

The border width.

font

Font

The font.

text

string

The text.

textAlignment

ContentAlignment

The text alignment.

formatFlags

StringFormatFlags

The format flags.

trimming

StringTrimming

The string trimming.

Properties

BackColor

Gets or sets the background color.

Declaration

cs-api-definition
public Color BackColor { get; set; }

Property Value

Color

BorderColor

Gets or sets the border color.

Declaration

cs-api-definition
public Color BorderColor { get; set; }

Property Value

Color

BorderWidth

Gets or sets the border width.

Declaration

cs-api-definition
public int BorderWidth { get; set; }

Property Value

int

Bounds

Gets the paint bounds.

Declaration

cs-api-definition
public RectangleF Bounds { get; set; }

Property Value

RectangleF

Font

Gets or sets the font.

Declaration

cs-api-definition
public Font Font { get; set; }

Property Value

Font

ForeColor

Gets or sets the foreground color.

Declaration

cs-api-definition
public Color ForeColor { get; set; }

Property Value

Color

FormatFlags

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

Declaration

cs-api-definition
public StringFormatFlags FormatFlags { get; set; }

Property Value

StringFormatFlags

Graphics

Gets the Graphics object.

Declaration

cs-api-definition
public Graphics Graphics { get; }

Property Value

Graphics

Handled

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.

Declaration

cs-api-definition
public bool Handled { get; set; }

Property Value

bool

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

Text

Gets or sets the text.

Declaration

cs-api-definition
public string Text { get; set; }

Property Value

string

TextAlignment

Gets or sets the text alignment.

Declaration

cs-api-definition
public ContentAlignment TextAlignment { get; set; }

Property Value

ContentAlignment

Trimming

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

Declaration

cs-api-definition
public StringTrimming Trimming { get; set; }

Property Value

StringTrimming