Skip to main content
A newer version of this page is available. .

SuperToolTip.OwnerAllowHtmlText Property

Gets whether HTML formatting in a SuperToolTip is allowed by the ToolTipController object that displays the current SuperToolTip object.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v19.1.dll

Declaration

[DefaultValue(false)]
[Browsable(false)]
public virtual bool OwnerAllowHtmlText { get; protected set; }

Property Value

Type Default Description
Boolean **false**

true if HTML formatting is allowed by the ToolTipController object that displays the current SuperToolTip object; otherwise, false.

Remarks

A SuperToolTip is displayed by a specific ToolTipController object. By default, the SuperToolTip.AllowHtmlText property is set to Default. In this mode, HTML formatting in SuperToolTips is supported if the ToolTipController.AllowHtmlText property is set to true. Otherwise, HTML formatting is disabled.

You can use the ToolTipController.AllowHtmlText property of the DefaultToolTipController object to control the HTML formatting feature for all tooltips in a centralized way.

To enable HTML formatting for an individual SuperToolTip object, use the SuperToolTip.AllowHtmlText property.

To learn more about HTML formatting, see HTML Text Formatting.

See Also