Skip to main content

ValidationEventArgs.SetError(Object) Method

Displays an error within the editor.

Namespace: DevExpress.UI.Xaml.Editors.Native

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

NuGet Package: DevExpress.Uwp.Controls

Declaration

public void SetError(
    object errorContent
)

Parameters

Name Type Description
errorContent Object

An object that specifies the error content.

Remarks

The SetError method automatically sets the ValidationEventArgs.IsValid property to false. If the errorContent parameter is set to an empty string or null, the ValidationEventArgs.IsValid property is set to true and the error isn’t displayed.

private void textEdit_Validate(object sender, ValidationEventArgs e) {
    if(Convert.ToDouble(e.Value) < 0)
        e.SetError("Negative values are not allowed.");
}
See Also