Back to Devexpress

IModelRegisteredViewItems Interface

expressappframework-devexpress-dot-expressapp-dot-editors-7566dc18.md

latest3.1 KB
Original Source

IModelRegisteredViewItems Interface

The ViewItems node specifies View Items to be used in a Detail View.

Namespace : DevExpress.ExpressApp.Editors

Assembly : DevExpress.ExpressApp.v25.2.dll

NuGet Package : DevExpress.ExpressApp

Declaration

csharp
[ImageName("ModelEditor_DetailViewItems")]
[ModelNodesGenerator(typeof(ModelRegisteredViewItemsGenerator))]
public interface IModelRegisteredViewItems :
    IModelNode,
    IModelList<IModelRegisteredViewItem>,
    IList<IModelRegisteredViewItem>,
    ICollection<IModelRegisteredViewItem>,
    IEnumerable<IModelRegisteredViewItem>,
    IEnumerable
vb
<ModelNodesGenerator(GetType(ModelRegisteredViewItemsGenerator))>
<ImageName("ModelEditor_DetailViewItems")>
Public Interface IModelRegisteredViewItems
    Inherits IModelNode,
             IModelList(Of IModelRegisteredViewItem),
             IList(Of IModelRegisteredViewItem),
             ICollection(Of IModelRegisteredViewItem),
             IEnumerable(Of IModelRegisteredViewItem),
             IEnumerable

The following members return IModelRegisteredViewItems objects:

Remarks

This node shows which View Items are used by default. With this node, you can edit the default behavior by assigning another available View Items.

This interface is a part of the Application Model infrastructure. You do not need to implement this interface in most cases.

The IModelRegisteredViewItems node represents a list of the IModelRegisteredViewItem nodes.

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

See Also

IModelRegisteredViewItems Members

Application Model (UI Settings Storage)

How the XAF Application Model Works

DevExpress.ExpressApp.Editors Namespace