Skip to main content
.NET 6.0+

ChoiceActionItem.Items Property

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

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v23.2.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