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

ASPxClientReportDesignerTabClosingEventArgs Class

Provides data for the ASPxClientReportDesigner.ReportTabClosing event.

#Declaration

TypeScript
declare class ASPxClientReportDesignerTabClosingEventArgs extends ASPxClientReportDesignerTabEventArgs

#Remarks

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

#Inherited Members

#Inheritance

ASPxClientEventArgs
ASPxClientReportDesignerTabEventArgs
ASPxClientReportDesignerTabClosingEventArgs
See Also

#constructor(tab, readyToClose)

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

#Declaration

TypeScript
constructor(
    tab: DevExpress.Reporting.Designer.Tools.NavigateTab,
    readyToClose: JQueryDeferred<any>
)

#Parameters

Name Type Description
tab NavigateTab

An object that specifies the report tab. This value is assigned to the ASPxClientReportDesignerTabEventArgs.Tab property.

readyToClose JQueryDeferred<any>

A JQuery Deferred object, which when resolved, forces the report tab to be closed. This value is assigned to the ASPxClientReportDesignerTabClosingEventArgs.ReadyToClose property.

#Properties

#Handled Property

Specifies whether or not the event was handled.

#Declaration

TypeScript
Handled: boolean

#Property Value

Type Description
boolean

true, if the event was handled and no other processing should occur; otherwise, false.

#ReadyToClose Property

Specifies the JQuery Deferred object, which when resolved, forces the report tab to be closed.

#Declaration

TypeScript
ReadyToClose: JQueryDeferred<any>

#Property Value

Type Description
JQueryDeferred<any>

A JQuery Deferred object.

#Remarks

The report tab is closed when the ReadyToClose deferred object is resolved. Closing the report tab is cancelled when the ReadyToClose object is rejected.