Class RadKeyTipShowingEventArgs
Inheritance
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class RadKeyTipShowingEventArgs : CancelEventArgs
Constructors
RadKeyTipShowingEventArgs(Boolean, Point, Font, Color, Color, Color)
Creates an instance of the RadKeyTipShowingEventArgs class.
Declaration
public RadKeyTipShowingEventArgs(bool cancel, Point customLocation, Font font, Color backColor, Color borderColor, Color foreColor)
Parameters
|
System.Boolean
cancel
|
|
System.Drawing.Point
customLocation
|
|
System.Drawing.Font
font
|
|
System.Drawing.Color
backColor
|
|
System.Drawing.Color
borderColor
|
|
System.Drawing.Color
foreColor
|
Properties
BackColor
Gets or sets an instance of the System.Drawing.Color struct containing the color which will be used to paint the background of the key tip.
Declaration
public Color BackColor { get; set; }
Property Value
|
System.Drawing.Color
|
BorderColor
Gets or sets an instance of the System.Drawing.Color struct containing the color which will be used to paint the borders of the key tip.
Declaration
public Color BorderColor { get; set; }
Property Value
|
System.Drawing.Color
|
CustomLocation
Gets or sets an instance of the System.Drawing.Point struct containing the coordinates which will be used to position the key tip.
Declaration
public Point CustomLocation { get; set; }
Property Value
|
System.Drawing.Point
|
Font
Gets or sets an instance of the System.Drawing.Font class containing the font which will be used to paint the text of the key tip.
Declaration
public Font Font { get; set; }
Property Value
|
System.Drawing.Font
|
ForeColor
Gets or sets an instance of the System.Drawing.Color struct containing the color which will be used to paint the text forecolor of the key tip.
Declaration
public Color ForeColor { get; set; }
Property Value
|
System.Drawing.Color
|