Skip to main content
A newer version of this page is available. .

ModelNodesGeneratorAttribute Class

Applied to Application Model node interfaces. Specifies a Nodes Generator for the current node.

Namespace: DevExpress.ExpressApp.Model

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

[AttributeUsage(AttributeTargets.Interface)]
public sealed class ModelNodesGeneratorAttribute :
    Attribute

Remarks

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> {
}

Inheritance

Object
Attribute
ModelNodesGeneratorAttribute
See Also