Back to Devexpress

IModelChoiceActionItems Interface

expressappframework-devexpress-dot-expressapp-dot-model-9f173701.md

latest3.1 KB
Original Source

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

csharp
[ModelNodesGenerator(typeof(ModelChoiceActionItemsNodesGenerator))]
public interface IModelChoiceActionItems :
    IModelNode,
    IModelList<IModelChoiceActionItem>,
    IList<IModelChoiceActionItem>,
    ICollection<IModelChoiceActionItem>,
    IEnumerable<IModelChoiceActionItem>,
    IEnumerable
vb
<ModelNodesGenerator(GetType(ModelChoiceActionItemsNodesGenerator))>
Public Interface IModelChoiceActionItems
    Inherits IModelNode,
             IModelList(Of IModelChoiceActionItem),
             IList(Of IModelChoiceActionItem),
             ICollection(Of IModelChoiceActionItem),
             IEnumerable(Of IModelChoiceActionItem),
             IEnumerable

The following members return IModelChoiceActionItems objects:

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

IModelChoiceActionItems Members

Application Model (UI Settings Storage)

How the XAF Application Model Works

DevExpress.ExpressApp.Model Namespace