Definition
Namespace:Telerik.WinControls.UI.HeatMap
Assembly:Telerik.WinControls.UI.dll
Syntax:
public abstract class BaseHeatMapPaintingEventArgs : HeatMapCellIndexEventArgs
Inheritance: objectEventArgsHeatMapCellIndexEventArgsBaseHeatMapPaintingEventArgs
Derived Classes:
Inherited Members
Constructors
Event arguments used in the painting events of RadHeatMap.
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)
The cell index.
graphicsGraphicsThe graphics object.
boundsRectangleFThe bounds.
backColorColorThe background color.
foreColorColorThe foreground color.
borderColorColorThe border color.
borderWidthintThe border width.
fontFontThe font.
textstringThe text.
textAlignmentContentAlignmentThe text alignment.
formatFlagsStringFormatFlagsThe format flags.
trimmingStringTrimmingThe string trimming.
Properties
Gets or sets the border color.
public Color BorderColor { get; set; }
Gets or sets the border width.
public int BorderWidth { get; set; }
Gets the paint bounds.
public RectangleF Bounds { get; set; }
Gets or sets the string format flags. For example by setting the NoWrap the text wrapping can be controlled.
public StringFormatFlags FormatFlags { get; set; }
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.
public bool Handled { get; set; }
true if the event has been completely handled; otherwise, false.
Gets or sets the text alignment.
public ContentAlignment TextAlignment { get; set; }
Gets or sets the string trimming. The default is EllipsisCharacter.
public StringTrimming Trimming { get; set; }