Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ASPxClientReportDesignerDialogEventArgs Class

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

#Declaration

TypeScript
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

#constructor(url, report)

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

#Declaration

TypeScript
constructor(
    url: string,
    report: any
)

#Parameters

Name Type Description
url string

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

TypeScript
Report: any

#Property Value

Type Description
any

An object that specifies the report currently being processed.

#Url Property

Specifies the URL of the report currently being processed.

#Declaration

TypeScript
Url: string

#Property Value

Type Description
string

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