Back to Devexpress

ASPxClientReportDesignerCustomizeOpenDialogEventArgs Class

xtrareports-js-aspxclientreportdesignercustomizeopendialogeventargs.md

latest2.3 KB
Original Source

ASPxClientReportDesignerCustomizeOpenDialogEventArgs Class

Provides data for the ASPxClientReportDesigner.CustomizeOpenDialog event.

Declaration

ts
declare class ASPxClientReportDesignerCustomizeOpenDialogEventArgs extends ASPxClientEventArgs

Remarks

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

Inheritance

ASPxClientEventArgs ASPxClientReportDesignerCustomizeOpenDialogEventArgs

constructor(popup)

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

Declaration

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

Parameters

NameTypeDescription
popupOpenReportDialog

An object that specifies the Open Report dialog.

|

Properties

Provides access to the Open Report dialog.

Declaration

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

Property Value

TypeDescription
OpenReportDialog

An object that specifies the Open Report dialog.

|

Methods

Customize(template, model) Method

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

|

Remarks

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

See Also

CustomizeOpenDialog