Skip to main content

ExceptionMode Enum

Lists values that specify how an exception should be handled.

Namespace: DevExpress.UI.Xaml.Grid

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

NuGet Package: DevExpress.Uwp.Controls

Declaration

public enum ExceptionMode

Members

Name Description
DisplayError

Displays a message box, with an error description specified by the InvalidRowExceptionEventArgs.ErrorText property. The message box’s caption can be specified using the InvalidRowExceptionEventArgs.WindowCaption property.

ThrowException

Throws an exception specified by the InvalidRowExceptionEventArgs.Exception property.

NoAction

Displays an error icon and allows an end-user to correct or reset an invalid value.

Ignore

An exception is ignored.

Related API Members

The following properties accept/return ExceptionMode values:

Remarks

The values listed by this enumeration are used to set the InvalidRowExceptionEventArgs.ExceptionMode property’s value.

See Also