TagsEditorAttribute()

Renders a tags editor for this property. Tags are not predefined and can be freely added by the user.

public TagsEditorAttribute()

TagsEditorAttribute(string)

Renders a tags editor for this property with a compile-time predefined list of allowed tags.

public TagsEditorAttribute(params string tags)

Parameters

tags string

Allowed tags of the format "{Key}:{Label}". If the label is omitted, the key will also be used as label.

TagsEditorAttribute(Type)

Renders a tags editor for this property with a predefined list of allowed tags, retrieved from the specified options provider.

public TagsEditorAttribute(Type tagsProviderType)

Parameters

tagsProviderType Type

The tags provider type. Must implement ISelectOptionsProvider.

In this article