xtrareports-js-aspxclientreportdesignertabclosingeventargs.md
Provides data for the ASPxClientReportDesigner.ReportTabClosing event.
declare class ASPxClientReportDesignerTabClosingEventArgs extends ASPxClientReportDesignerTabEventArgs
ASPxClientReportDesignerTabClosingEventArgs objects are automatically created, initialized and passed to corresponding event handlers.
ASPxClientEventArgs ASPxClientReportDesignerTabEventArgs ASPxClientReportDesignerTabClosingEventArgs
See Also
Initializes a new instance of the ASPxClientReportDesignerTabClosingEventArgs class with the specified settings.
constructor(
tab: DevExpress.Reporting.Designer.Tools.NavigateTab,
readyToClose: JQueryDeferred<any>
)
| 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.
|
Specifies whether or not the event was handled.
Handled: boolean
| Type | Description |
|---|---|
| boolean |
true , if the event was handled and no other processing should occur; otherwise, false.
|
Specifies the JQuery Deferred object, which when resolved, forces the report tab to be closed.
ReadyToClose: JQueryDeferred<any>
| Type | Description |
|---|---|
| JQueryDeferred<any> |
A JQuery Deferred object.
|
The report tab is closed when the ReadyToClose deferred object is resolved. Closing the report tab is cancelled when the ReadyToClose object is rejected.