Class HeatMapScreenTipEventArgs
Provides data for the ScreenTipShowing event.
Inheritance
Namespace: Telerik.WinControls.UI.HeatMap
Assembly: Telerik.WinControls.UI.dll
Syntax
public class HeatMapScreenTipEventArgs : CancelEventArgs
Constructors
HeatMapScreenTipEventArgs(RadOffice2007ScreenTipElement, Point, CellIndex)
Initializes a new instance of the HeatMapScreenTipEventArgs class.
Declaration
public HeatMapScreenTipEventArgs(RadOffice2007ScreenTipElement screenTip, Point location, CellIndex index)
Parameters
RadOffice2007ScreenTipElement
screenTip
The screen tip. |
System.Drawing.Point
location
The screen tip location. |
CellIndex
index
The cell index. |
Properties
CaptionText
Gets or sets the ScreenTip caption.
Declaration
public string CaptionText { get; set; }
Property Value
System.String
|
Delay
Gets or sets the ScreenTip delay.
Declaration
public int Delay { get; set; }
Property Value
System.Int32
|
FooterText
Index
Gets the cell index. Header cells come with -1 index. For row headers the RowIndex is -1. For column headers the ColumnIndex is -1. ///
Declaration
public CellIndex Index { get; }
Property Value
CellIndex
|
Location
Gets or sets the ScreenTip location.
Declaration
public Point Location { get; set; }
Property Value
System.Drawing.Point
|
ScreenTip
Gets the screen tip.
Declaration
public RadOffice2007ScreenTipElement ScreenTip { get; }
Property Value
RadOffice2007ScreenTipElement
|
Text
Gets or sets the ScreenTip content.
Declaration
public string Text { get; set; }
Property Value
System.String
|