ASPxClientReportDesignerTabClosingEventArgs Class
Provides data for the ASPxClientReportDesigner.ReportTabClosing event.
#Declaration
declare class ASPxClientReportDesignerTabClosingEventArgs extends ASPxClientReportDesignerTabEventArgs
#Remarks
ASPxClientReportDesignerTabClosingEventArgs objects are automatically created, initialized and passed to corresponding event handlers.
#Inheritance
#constructor(tab, readyToClose)
Initializes a new instance of the ASPxClientReportDesignerTabClosingEventArgs
class with the specified settings.
#Declaration
constructor(
tab: DevExpress.Reporting.Designer.Tools.NavigateTab,
readyToClose: JQueryDeferred<any>
)
#Parameters
Name | Type | Description |
---|---|---|
tab | Navigate |
An object that specifies the report tab. This value is assigned to the ASPx |
ready |
JQuery |
A JQuery Deferred object, which when resolved, forces the report tab to be closed. This value is assigned to the ASPx |
#Properties
#Handled Property
Specifies whether or not the event was handled.
#Declaration
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
ReadyToClose: JQueryDeferred<any>
#Property Value
Type | Description |
---|---|
JQuery |
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.