expressappframework-devexpress-dot-expressapp-dot-model-f2b1c3e9.md
Applied to Application Model node interfaces. Specifies a Nodes Generator for the current node.
Namespace : DevExpress.ExpressApp.Model
Assembly : DevExpress.ExpressApp.v25.2.dll
NuGet Package : DevExpress.ExpressApp
[AttributeUsage(AttributeTargets.Interface)]
public sealed class ModelNodesGeneratorAttribute :
Attribute
<AttributeUsage(AttributeTargets.Interface)>
Public NotInheritable Class ModelNodesGeneratorAttribute
Inherits Attribute
To define how the custom Application Model node is generated, implement a ModelNodesGeneratorBase descendant and override the GenerateNodesCore method. To apply the implemented Generator to the required node, decorate the model node interface with the ModelNodesGenerator attribute, and pass the Nodes Generator type as the parameter.
[ModelNodesGenerator(typeof(MyChildNodesGenerator))]
public interface IModelMyNodeWithChildNodes : IModelNode, IModelList<IModelMyChildNode> {
}
Object Attribute ModelNodesGeneratorAttribute
See Also
ModelNodesGeneratorAttribute Members
Read and Set Values for Built-in Application Model Nodes in Code