Skip to main content

BootstrapTagBox.Tags Property

Provides access to a collection of editor tags.

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

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.

This property is a wrapper of the BootstrapTagBoxProperties.Tags property.

See Also