Skip to main content

ValidationEventArgs.IsValid Property

Gets or sets a value specifying whether the value is valid.

Namespace: DevExpress.UI.Xaml.Editors.Native

Assembly: DevExpress.UI.Xaml.Editors.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public bool IsValid { get; set; }

Property Value

Type Description
Boolean

true if the value is valid; otherwise, false.

Remarks

Use the IsValid property to specify whether a new value meets your validation criteria, and can be posted to the editor.

If the entered value is not valid, set the IsValid property to false. In this instance, this value will not be posted to the editor and an error icon defined by the ValidationEventArgs.ErrorType, will be displayed within the editor. The error description (error tooltip) can be specified using the ValidationEventArgs.ErrorContent property.

See Also