Back to Devexpress

ASPxClientReportDesignerCustomizeSaveDialogEventArgs Class

xtrareports-js-aspxclientreportdesignercustomizesavedialogeventargs.md

latest2.3 KB
Original Source

ASPxClientReportDesignerCustomizeSaveDialogEventArgs Class

Provides data for the ASPxClientReportDesigner.CustomizeSaveDialog event.

Declaration

ts
declare class ASPxClientReportDesignerCustomizeSaveDialogEventArgs extends ASPxClientEventArgs

Remarks

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

Inheritance

ASPxClientEventArgs ASPxClientReportDesignerCustomizeSaveDialogEventArgs

constructor(popup)

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

Declaration

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

Parameters

NameTypeDescription
popupSaveReportDialog

An object that specifies the Save dialog.

|

Properties

Provides access to the Save dialog.

Declaration

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

Property Value

TypeDescription
SaveReportDialog

An object that specifies the Save dialog.

|

Methods

Customize(template, model) Method

Customizes the Save 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 dialog.

|

Remarks

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

See Also

CustomizeSaveDialog