Skip to main content
A newer version of this page is available. .

NavigatorExceptionEventArgs(String, String, Exception, ExceptionMode, NavigatorButton) Constructor

Initializes a new instance of the NavigatorExceptionEventArgs class.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

public NavigatorExceptionEventArgs(
    string errorText,
    string windowCaption,
    Exception exception,
    ExceptionMode exceptionMode,
    NavigatorButton button
)

Parameters

Name Type Description
errorText String

A string value specifying the error description. This value is assigned to the ExceptionEventArgs.ErrorText property.

windowCaption String

A string value specifying the error message box caption. This value is assigned to the ExceptionEventArgs.WindowCaption property.

exception Exception

A Exception object representing the exception that raised the event. This value is assigned to the ExceptionEventArgs.Exception property.

exceptionMode ExceptionMode

A ExceptionMode enumeration value specifying the response to entering an invalid value. This value is assigned to the ExceptionEventArgs.ExceptionMode property.

button NavigatorButton

The button whose press fired the exception.

See Also