ValidationModule.RuleSetInitialized Event
In This Article
Occurs after the RuleSet object assigned to the DevExpress.Persistent.Validation.Validator.RuleSet
property has been initialized via the ValidationModule.InitializeRuleSet method.
Namespace: DevExpress.ExpressApp.Validation
Assembly: DevExpress.ExpressApp.Validation.v24.2.dll
NuGet Package: DevExpress.ExpressApp.Validation
#Declaration
public event EventHandler<RuleSetInitializedEventArgs> RuleSetInitialized
#Event Data
The RuleSetInitialized event's data class is RuleSetInitializedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Rule |
Specifies the Validation Rules declared in an application. |
#Remarks
Handle this event to subscribe to the RuleSet object’s events, such as the RuleSet.CustomValidateRule event.
See Also