xtrareports-js-aspxclientreportdesignercustomizesavedialogeventargs.md
Provides data for the ASPxClientReportDesigner.CustomizeSaveDialog event.
declare class ASPxClientReportDesignerCustomizeSaveDialogEventArgs extends ASPxClientEventArgs
ASPxClientReportDesignerCustomizeSaveDialogEventArgs objects are automatically created, initialized and passed to corresponding event handlers.
ASPxClientEventArgs ASPxClientReportDesignerCustomizeSaveDialogEventArgs
Initializes a new instance of the ASPxClientReportDesignerCustomizeSaveDialogEventArgs class with the specified settings.
constructor(
popup: DevExpress.Reporting.Designer.Tools.SaveReportDialog
)
| Name | Type | Description |
|---|---|---|
| popup | SaveReportDialog |
An object that specifies the Save dialog.
|
Provides access to the Save dialog.
Popup: DevExpress.Reporting.Designer.Tools.SaveReportDialog
| Type | Description |
|---|---|
| SaveReportDialog |
An object that specifies the Save dialog.
|
Customizes the Save 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 dialog.
|
For an example of using this method, see the ASPxClientReportDesigner.CustomizeSaveDialog event description.
See Also