Skip to main content

IModelChoiceActionItems Interface

Displays a collection of Choice Action Items in the Application Model that corresponds to items in the Action’s ChoiceActionBase.Items collection.

Namespace: DevExpress.ExpressApp.Model

Assembly: DevExpress.ExpressApp.v25.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

[ModelNodesGenerator(typeof(ModelChoiceActionItemsNodesGenerator))]
public interface IModelChoiceActionItems :
    IModelNode,
    IModelList<IModelChoiceActionItem>,
    IList<IModelChoiceActionItem>,
    ICollection<IModelChoiceActionItem>,
    IEnumerable<IModelChoiceActionItem>,
    IEnumerable

Remarks

This node is available when the parent node is an Action of the SingleChoiceAction type. Only items added in the Controller’s constructor are loaded to the Application Model.

This interface is a part of the Application Model infrastructure. Usually, you do not need to implement this interface.

To customize the default content of this node, implement a Generator Updater for the ModelChoiceActionItemsNodesGenerator Nodes Generator.

See Also