Skip to main content
All docs
V25.1
  • 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.v25.1.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