Skip to main content
.NET 6.0+

DevExpress v24.1 Update — Your Feedback Matters

Our What's New in v24.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ChoiceActionItem.Items Property

Provides access to a Choice Action Item’s item collection.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v24.1.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public ChoiceActionItemCollection Items { get; }

#Property Value

Type Description
ChoiceActionItemCollection

A ChoiceActionItemCollection object that represents the current Choice Action Item’s item collection.

#Remarks

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.

ChoiceActionItem_Items

To learn how to populate the Items collection in code, see the Add an Action with Option Selection topic.

See Also