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

ValidationModule.RuleSetInitialized Event

Occurs after the RuleSet object assigned to the Validator.RuleSet property has been initialized via the ValidationModule.InitializeRuleSet method.

Namespace: DevExpress.ExpressApp.Validation

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

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
RuleSet 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