AllowAutoClose
. This, together with the property AutoCloseDuration
allow you to set flexible time-limits for hiding the ToolTip if shown.AllowAutoClose
enabled and the property AutoCloseDuration
set to the default 5000 (the unit is in milliseconds):BackColor
: Sets the ToolTip's background color.BorderColor
: Sets the ToolTip's border color.TitleForeColor
: Sets the ToolTip's title-fore-color.TextForeColor
: Sets the ToolTip's text-fore-color.DisplayControl
, you can provide your own individual control whenever the ToolTip pops-up in-place of the default display. Since this property is not accessible from the Properties window, you'll need to access it via code-view.ClickToShowDisplayControl
to true
.
Here's some sample code:Active
: true
.ConvertNewlinesToBreakTags
: ShowAlways
: ShowIcons
: OverrideToolTipTitles
: ToolTipTitle
provided.AlignTextWithTitle
: ToolTipText
will be aligned horizontally with the ToolTipTitle
's position. This is especially useful whenever the ToolTipIcon
is set.ShowShadows
: ShowBorders
: AllowFading
: When set to true, a fade effect is used when ToolTips are shown or hidden.AllowAutoClose
: AutoCloseDuration
, is given. However, when set to false, the ToolTip will be closed once the mouse leaves the associated control.Padding
: Title
and Text
information.ToolTipTitle
: ToolTipTitle
to be implemented across all associated controls within the parent control. This feature will only be active whenever the property OverrideToolTipTitles
is set to true
.Opacity
: InitialDelay
: ReshowDelay
: AutoCloseDuration
: AllowAutoClose
is set to true.EntryAnimationSpeed
: ExitAnimationSpeed
: IconMargin
: ToolTipIcon
and ToolTipTitle
.TextMargin
: ToolTipText
margin, that is, the distance between the ToolTipTitle
and the ToolTipText
.BackColor
: BoderColor
: TitleForeColor
: TextForeColor
: TitleFont
: TextFont
: Visible
: DisplayControl
: ClickToShowDisplayControl
: DisplayControl
will be displayed once a user clicks on the associated ToolTip control.ToolTipPosition
: Show
Show(Control[Control], Text[string], Optional:Title[string], Optional:Icon[Image], Optional:Location[Point])
: Sets the ToolTip content to be associated with the specified control and displays the ToolTip.Hide
Hide()
: Hides the ToolTip when displayed in any associated control(s).RemoveALl
RemoveAll()
: Removes all the applied ToolTips currently associated with the ToolTip component.CanExtend
CanExtend(object extendee)
: Returns true if the ToolTip can offer an extender property to the specified target component.Popup
: PopupEventArgs
event arguments for handling the associated Control and ToolTip.Closed
: