ValidationEventArgs(RoutedEvent, Object, Object, CultureInfo) Constructor
Initializes a new instance of the ValidationEventArgs class with the specified routed event, source, value and current culture.
Namespace: DevExpress.Xpf.Editors
Assembly: DevExpress.Xpf.Core.v25.1.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
public ValidationEventArgs(
RoutedEvent routedEvent,
object source,
object value,
CultureInfo culture
)
Parameters
| Name | Type | Description |
|---|---|---|
| routedEvent | RoutedEvent | The routed event. |
| source | Object | An object that raised the event. |
| value | Object | A Object specifying the entered value. This object is assigned to the ValidationEventArgs.Value property. |
| culture | CultureInfo | A CultureInfo object specifying the current culture. This object is assigned to the ValidationEventArgs.Culture property. |
Remarks
Instances of the ValidationEventArgs class are automatically created, initialized and passed to the corresponding event handlers.
See Also