Back to Devexpress

ASPxClientReportDesignerDialogCancelEventArgs Class

xtrareports-js-aspxclientreportdesignerdialogcanceleventargs.md

latest2.4 KB
Original Source

ASPxClientReportDesignerDialogCancelEventArgs Class

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

Declaration

ts
declare class ASPxClientReportDesignerDialogCancelEventArgs extends ASPxClientReportDesignerDialogEventArgs

Remarks

The ASPxClientReportDesignerDialogCancelEventArgs class provides data for the following events.

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

Inherited Members

Report

Url

Inheritance

ASPxClientEventArgs ASPxClientReportDesignerDialogEventArgs ASPxClientReportDesignerDialogCancelEventArgs ASPxClientReportDesignerReportSavingDialogEventArgs

constructor(url, report)

Initializes a new instance of the ASPxClientReportDesignerDialogCancelEventArgs 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

Cancel Property

Specifies whether or not the operation performed with a report should be canceled.

Declaration

ts
Cancel: boolean

Property Value

TypeDescription
boolean

true , if the operation should be canceled; otherwise, false.

|