New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class RadKeyTipShowingEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsRadKeyTipShowingEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

Creates an instance of the RadKeyTipShowingEventArgs class.

C#
public RadKeyTipShowingEventArgs(bool cancel, Point customLocation, Font font, Color backColor, Color borderColor, Color foreColor)
Parameters:cancelboolcustomLocationPointfontFontbackColorColorborderColorColorforeColorColor

Properties

Gets or sets an instance of the Color struct containing the color which will be used to paint the background of the key tip.

C#
public Color BackColor { get; set; }

Gets or sets an instance of the Color struct containing the color which will be used to paint the borders of the key tip.

C#
public Color BorderColor { get; set; }

Gets or sets an instance of the Point struct containing the coordinates which will be used to position the key tip.

C#
public Point CustomLocation { get; set; }

Gets or sets an instance of the Font class containing the font which will be used to paint the text of the key tip.

C#
public Font Font { get; set; }

Gets or sets an instance of the Color struct containing the color which will be used to paint the text forecolor of the key tip.

C#
public Color ForeColor { get; set; }