xtrareports-js-aspxclientreportdesignercustomizesaveasdialogeventargs.md
Provides data for the ASPxClientReportDesigner.CustomizeSaveAsDialog event.
declare class ASPxClientReportDesignerCustomizeSaveAsDialogEventArgs extends ASPxClientEventArgs
ASPxClientReportDesignerCustomizeSaveAsDialogEventArgs objects are automatically created, initialized and passed to corresponding event handlers.
ASPxClientEventArgs ASPxClientReportDesignerCustomizeSaveAsDialogEventArgs
Initializes a new instance of the ASPxClientReportDesignerCustomizeSaveAsDialogEventArgs class with the specified settings.
constructor(
popup: DevExpress.Reporting.Designer.Tools.SaveAsReportDialog
)
| Name | Type | Description |
|---|---|---|
| popup | SaveAsReportDialog |
An object that specifies the Save Report dialog.
|
Provides access to the Save Report dialog.
Popup: DevExpress.Reporting.Designer.Tools.SaveAsReportDialog
| Type | Description |
|---|---|
| SaveAsReportDialog |
An object that specifies the Save Report dialog.
|
Customizes the Save Report dialog based on the specified template and model.
Customize(
template: string,
model: DevExpress.Reporting.Designer.Tools.IDialogModel
): void
| Name | Type | Description |
|---|---|---|
| template | string |
A string that specifies the name of an HTML template for the dialog.
| | model | IDialogModel |
A model of the Save Report dialog.
|
For an example of using this method, see the ASPxClientReportDesigner.CustomizeSaveAsDialog event description.
See Also