Skip to main content
.NET 6.0+

IModelRegisteredViewItems Interface

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

Namespace: DevExpress.ExpressApp.Editors

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

[ModelNodesGenerator(typeof(ModelRegisteredViewItemsGenerator))]
[ImageName("ModelEditor_DetailViewItems")]
public interface IModelRegisteredViewItems :
    IModelNode,
    IModelList<IModelRegisteredViewItem>,
    IList<IModelRegisteredViewItem>,
    ICollection<IModelRegisteredViewItem>,
    IEnumerable<IModelRegisteredViewItem>,
    IEnumerable

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