Skip to main content

NavigatorExceptionEventArgs(String, Exception, NavigatorButton) Constructor

Initializes a new instance of the NavigatorExceptionEventArgs class.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public NavigatorExceptionEventArgs(
    string errorText,
    Exception exception,
    NavigatorButton button
)

Parameters

Name Type Description
errorText String

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

exception Exception

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

button NavigatorButton

The button whose press fired the exception.

Remarks

The ExceptionEventArgs.ExceptionMode property is set to ExceptionMode.DisplayError.

The ExceptionEventArgs.WindowCaption property is set to the value retrieved by the Localizer.GetLocalizedString method for the StringId.CaptionError identifier (by default, “Error”).

See Also