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

IModelValidationRules Interface

The Rules node defines all the Rules that are applied in an application.

Namespace: DevExpress.ExpressApp.Validation

Assembly: DevExpress.ExpressApp.Validation.v18.1.dll

Declaration

[ModelNodesGenerator(typeof(ModelValidationRulesNodeGenerator))]
public interface IModelValidationRules :
    IModelNode,
    IModelList<IModelRuleBase>,
    IList<IModelRuleBase>,
    ICollection<IModelRuleBase>,
    IEnumerable<IModelRuleBase>,
    IEnumerable

The following members return IModelValidationRules objects:

Remarks

By default, the Rules node contains several Rules. You can add other Rules (both supplied Rule types and your own) using the context menu of this node.

This interface is a part of the Application Model infrastructure and is not intended to be implemented by your classes. To learn more, refer to the Application Model Structure topic.

The IModelValidationRules node represents a list of the IModelRuleBase nodes.

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

See Also