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

BaseControl.AllowHtmlTextInToolTip Property

Gets or sets whether HTML formatting is allowed in the control’s regular tooltips.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("ToolTip")]
[DefaultValue(DefaultBoolean.Default)]
public virtual DefaultBoolean AllowHtmlTextInToolTip { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

A DefaultBoolean value that specifies whether HTML formatting is allowed in the control’s regular tooltips.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Remarks

If the AllowHtmlTextInToolTip property is set to True, you can use HTML tags to format the text for regular tooltips (BaseControl.ToolTip). If the AllowHtmlTextInToolTip property is set to Default, the HTML formatting feature is enabled if a corresponding ToolTipController’s ToolTipController.AllowHtmlText property is set to true.

To enable HTML formatting in SuperToolTips, use the SuperToolTip.AllowHtmlText property.

For detailed information see HTML Text Formatting.

See Also