Multiselect Attribute
The MultiSelectAttribute allows the user to select multiple items from a set of options.
Example
XML Syntax
<MultiSelectAttribute Name="ExampleMultiSelect">
<Items>
<Item value="string1" selected="true" />
<Item value="string2" selected="false" />
<Item value="string3" selected="true" />
</Items>
</MultiSelectAttribute>Appearance

XML Elements
Items
Defines the list of selectable options.
Item
A single selectable option. The value can be written as this
or this
XML Attributes
Selected
Indicates if this item is selected by default when the Document Object is created. The default value is false.
Last updated
Was this helpful?