Back to Devexpress

ModelRegisteredViewItemsGenerator Class

expressappframework-devexpress-dot-expressapp-dot-editors-95cb97cd.md

latest3.2 KB
Original Source

ModelRegisteredViewItemsGenerator Class

A Nodes Generator that generates the content of the IModelRegisteredViewItems node.

Namespace : DevExpress.ExpressApp.Editors

Assembly : DevExpress.ExpressApp.v25.2.dll

NuGet Package : DevExpress.ExpressApp

Declaration

csharp
public class ModelRegisteredViewItemsGenerator :
    ModelNodesGeneratorBase
vb
Public Class ModelRegisteredViewItemsGenerator
    Inherits ModelNodesGeneratorBase

Remarks

This class is a ModelNodesGeneratorBase descendant, that generates child nodes of the ViewItems node. It adds the IModelRegisteredViewItems and IModelRegisteredPropertyEditors nodes, based on registered Property Editors.

To customize the content of the ViewItems node, implement a Generator Updater for this Nodes Generator by inheriting the ModelNodesGeneratorUpdater<T> class in the following manner:

csharp
public class Updater : ModelNodesGeneratorUpdater<ModelRegisteredViewItemsGenerator> {
    public override void UpdateNode(ModelNode node) {
        // Cast the 'node' parameter to IModelRegisteredDetailViewItems
        // to access the DetailViewItems node.
    }
}

The Generator Updater above should be registered within the overridden ModuleBase.AddGeneratorUpdaters method.

For a complete list of available Nodes Generators, refer to the Built-in Nodes Generators topic.

Inheritance

Object ModelNodesGeneratorBase ModelRegisteredViewItemsGenerator

See Also

ModelRegisteredViewItemsGenerator Members

Read and Set Values for Built-in Application Model Nodes in Code

DevExpress.ExpressApp.Editors Namespace