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

BootstrapTagBoxProperties.Tags Property

Provides access to a collection of editor tags.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.2.dll

Declaration

public BootstrapTagCollection Tags { get; set; }

Property Value

Type Description
BootstrapTagCollection

A BootstrapTagCollection instance that is the collection of tags.

Remarks

Use the Tags property to access a collection of tags in the editor. The collection provides methods that allow you to add new tags and remove existing ones, access individual tags, etc.

Note

Tags in a collection must be unique, so adding a tag with text which is already contained in the collection does nothing.

Note

Tags cannot contain a comma (,), semicolon (;), or a sign specified by the ASPxTokenBox.TextSeparator property. When an end-user types a tag, these signs end a tag input.

The Tags property synchronizes its value with the editor’s BootstrapTagBox.Tags property.

See Also