Back to Devexpress

ASPxClientReportDesignerCustomizeSaveAsDialogEventArgs Class

xtrareports-js-aspxclientreportdesignercustomizesaveasdialogeventargs.md

latest2.4 KB
Original Source

ASPxClientReportDesignerCustomizeSaveAsDialogEventArgs Class

Provides data for the ASPxClientReportDesigner.CustomizeSaveAsDialog event.

Declaration

ts
declare class ASPxClientReportDesignerCustomizeSaveAsDialogEventArgs extends ASPxClientEventArgs

Remarks

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

Inheritance

ASPxClientEventArgs ASPxClientReportDesignerCustomizeSaveAsDialogEventArgs

constructor(popup)

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

Declaration

ts
constructor(
    popup: DevExpress.Reporting.Designer.Tools.SaveAsReportDialog
)

Parameters

NameTypeDescription
popupSaveAsReportDialog

An object that specifies the Save Report dialog.

|

Properties

Provides access to the Save Report dialog.

Declaration

ts
Popup: DevExpress.Reporting.Designer.Tools.SaveAsReportDialog

Property Value

TypeDescription
SaveAsReportDialog

An object that specifies the Save Report dialog.

|

Methods

Customize(template, model) Method

Customizes the Save Report dialog based on the specified template and model.

Declaration

ts
Customize(
    template: string,
    model: DevExpress.Reporting.Designer.Tools.IDialogModel
): void

Parameters

NameTypeDescription
templatestring

A string that specifies the name of an HTML template for the dialog.

| | model | IDialogModel |

A model of the Save Report dialog.

|

Remarks

For an example of using this method, see the ASPxClientReportDesigner.CustomizeSaveAsDialog event description.

See Also

CustomizeSaveAsDialog