Back to Devexpress

ASPxClientReportDesignerDialogEventArgs Class

xtrareports-js-aspxclientreportdesignerdialogeventargs.md

latest2.2 KB
Original Source

ASPxClientReportDesignerDialogEventArgs Class

Provides data for the events related to opening and saving reports in the Web Report Designer.

Declaration

ts
declare class ASPxClientReportDesignerDialogEventArgs extends ASPxClientEventArgs

Remarks

The ASPxClientReportDesignerDialogEventArgs class provides data for the following events.

Objects of this class are automatically created, initialized and passed to corresponding event handlers.

Inheritance

ASPxClientEventArgs ASPxClientReportDesignerDialogEventArgs ASPxClientReportDesignerDialogCancelEventArgs

constructor(url, report)

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

Declaration

ts
constructor(
    url: string,
    report: any
)

Parameters

NameTypeDescription
urlstring

Specifies the URL of the report currently being processed. This value is assigned to the ASPxClientReportDesignerDialogEventArgs.Url property.

| | report | any |

Specifies the report currently being processed. This value is assigned to the ASPxClientReportDesignerDialogEventArgs.Report property.

|

Properties

Report Property

Specifies the report currently being processed.

Declaration

ts
Report: any

Property Value

TypeDescription
any

An object that specifies the report currently being processed.

|

Url Property

Specifies the URL of the report currently being processed.

Declaration

ts
Url: string

Property Value

TypeDescription
string

A string that specifies the URL of the report currently being processed.

|