windowsforms-devexpress-dot-xtraeditors-dot-htmlcontentpopup.md
Gets or sets the component that controls the behavior and appearance of hints displayed for HTML elements.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(null)]
[DXCategory("ToolTip")]
public ToolTipController ToolTipController { get; set; }
<DefaultValue(Nothing)>
<DXCategory("ToolTip")>
Public Property ToolTipController As ToolTipController
| Type | Default | Description |
|---|---|---|
| ToolTipController | null |
An object that specifies hint settings.
|
You can use the title attribute of HTML elements to specify tooltips:
<div id="miNew" class="menuItem" title="Create a new file">New</div>
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