Skip to main content
.NET Framework 4.6.2+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ValidationModule.RuleSetInitialized Event

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

#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