Back to Devexpress

ASPxClientErrorEventArgs Class

xtrareports-js-aspxclienterroreventargs.md

latest1.4 KB
Original Source

ASPxClientErrorEventArgs Class

Provides data for the ASPxClientWebDocumentViewer.OnServerError, ASPxClientReportDesigner.OnServerError and ASPxClientQueryBuilder.OnServerError events.

Declaration

ts
declare class ASPxClientErrorEventArgs extends ASPxClientEventArgs

Remarks

ASPxClientErrorEventArgs objects are automatically created, initialized and passed to corresponding event handlers.

Inheritance

ASPxClientEventArgs ASPxClientErrorEventArgs

constructor(error)

Initializes a new instance of the ASPxClientErrorEventArgs class with the specified settings.

Declaration

ts
constructor(
    error: any
)

Parameters

NameTypeDescription
errorany

An object that provides information about a server-side error. This value is assigned to the Error property.

|

Properties

Error Property

Provides access to information about a server-side error.

Declaration

ts
Error: any

Property Value

TypeDescription
any

An object that provides information about an error.

|