Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

HtmlContentPopup.ToolTipController Property

Gets or sets the component that controls the behavior and appearance of hints displayed for HTML elements.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(null)]
[DXCategory("ToolTip")]
public ToolTipController ToolTipController { get; set; }

#Property Value

Type Default Description
ToolTipController null

An object that specifies hint settings.

#Remarks

You can use the title attribute of HTML elements to specify tooltips:

<div id="miNew" class="menuItem" title="Create a new file">New</div>

HtmlContentPopup Tooltip Example

When the HtmlContentPopup.ToolTipController property is not set, the Default ToolTipController object (see DefaultToolTipController) manages the display settings of tooltips. Set the HtmlContentPopup.ToolTipController property to a ToolTipController component to use a custom ToolTipController object instead of the Default ToolTipController to manage tooltips.

See the following topic for more information: Tooltips.

See Also