Class TreeMapItemPaintingEventArgs
Event arguments used in the Item
Inherited Members
Namespace: Telerik.WinControls.UI.TreeMap
Assembly: Telerik.WinControls.UI.dll
Syntax
public class TreeMapItemPaintingEventArgs : TreeMapItemEventArgs
Constructors
TreeMapItemPaintingEventArgs(TreeMapDataItem, Graphics, RectangleF, Color, Color, Color, Font, String, ContentAlignment)
Event arguments used in the Item
Declaration
public TreeMapItemPaintingEventArgs(TreeMapDataItem item, Graphics graphics, RectangleF bounds, Color backColor, Color foreColor, Color borderColor, Font font, string text, ContentAlignment textAlignment)
Parameters
Tree The data item. |
System. The graphics object. |
System. The item bounds. |
System. The item background color. |
System. The item foreground color. |
System. The item border color. |
System. The item font. |
System. The item text. |
System. The text alignment. |
Properties
BackColor
Gets or sets the item background color.
Declaration
public Color BackColor { get; set; }
Property Value
System.
|
BorderColor
Gets or sets the item border color.
Declaration
public Color BorderColor { get; set; }
Property Value
System.
|
Bounds
Gets the bounds of the item.
Declaration
public RectangleF Bounds { get; set; }
Property Value
System.
|
Font
Gets or sets the item font.
Declaration
public Font Font { get; set; }
Property Value
System.
|
ForeColor
Gets or sets the item foreground color.
Declaration
public Color ForeColor { get; set; }
Property Value
System.
|
Graphics
Gets the System.
Declaration
public Graphics Graphics { get; }
Property Value
System.
|
Handled
Determines whether the item should be painted.
Declaration
public bool Handled { get; set; }
Property Value
System.
|
Text
Gets or sets the item text.
Declaration
public string Text { get; set; }
Property Value
System.
|
TextAlignment
Gets or sets the text alignment.
Declaration
public ContentAlignment TextAlignment { get; set; }
Property Value
System.
|