Skip to main content

NavElement.AllowHtmlString Property

Gets or sets whether the element’s caption is formatted using HTML tags.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v23.2.dll

NuGet Packages: DevExpress.Win, DevExpress.Win.Navigation

Declaration

[DefaultValue(DefaultBoolean.Default)]
[XtraSerializableProperty]
public DefaultBoolean AllowHtmlString { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

A DefaultBoolean enumeration value that specifies whether the element’s caption is formatted using HTML tags.

Available values:

Name Description Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

Remarks

You can format the element’s caption (see NavElement.Caption) using HTML tags. By default, when the AllowHtmlString equals Default, this feature is controlled by the NavBarControl.AllowHtmlString property. Use the AllowHtmlString property to override the global setting for the current element.

For detailed information on supported HTML tags, see the HTML Text Formatting topic.

See Also