expressappframework-devexpress-dot-expressapp-dot-actions-dot-choiceactionitem-15c1536b.md
Provides access to a Choice Action Item’s item collection.
Namespace : DevExpress.ExpressApp.Actions
Assembly : DevExpress.ExpressApp.v25.2.dll
NuGet Package : DevExpress.ExpressApp
public ChoiceActionItemCollection Items { get; }
Public ReadOnly Property Items As ChoiceActionItemCollection
| Type | Description |
|---|---|
| ChoiceActionItemCollection |
A ChoiceActionItemCollection object that represents the current Choice Action Item’s item collection.
|
Choice Action Items can contain nested items of the same ChoiceActionItem type. So, each of nested item can contain items as well. This property provides access to the nested items collection. The most convenient way to specify this property is to use the ChoiceActionItem Collection Editor. To invoke this editor, use the ellipsis button of the Choice Action’s Items property in the Properties window. In this editor, you can add items to the Action. To add items to a selected Action item, use the ellipsis button of the item’s Items property.
To learn how to populate the Items collection in code, see the Add an Action with Option Selection topic.
See Also