Back to Devexpress

ASPxClientParametersResetEventArgs Class

xtrareports-js-aspxclientparametersreseteventargs.md

latest2.4 KB
Original Source

ASPxClientParametersResetEventArgs Class

Provides data for the ASPxClientWebDocumentViewer.ParametersReset and ASPxClientReportDesigner.PreviewParametersReset events.

Declaration

ts
declare class ASPxClientParametersResetEventArgs extends ASPxClientEventArgs

Remarks

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

Inheritance

ASPxClientEventArgs ASPxClientParametersResetEventArgs

constructor(parametersModel, parameters)

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

Declaration

ts
constructor(
    parametersModel: any,
    parameters: DevExpress.Reporting.Viewer.Parameters.IParameter[]
)

Parameters

NameTypeDescription
parametersModelany

A View Model object for report parameters. This value is assigned to the ASPxClientParametersResetEventArgs.ParametersViewModel property.

| | parameters | IParameter[] |

An array of IParameter objects. This value is assigned to the ASPxClientParametersResetEventArgs.Parameters property.

|

Properties

Parameters Property

Provides access to report parameters whose values have been reset.

Declaration

ts
Parameters: DevExpress.Reporting.Viewer.Parameters.IParameter[]

Property Value

TypeDescription
IParameter[]

An IParameter array.

|

ParametersViewModel Property

Provides access to a View Model for report parameters.

Declaration

ts
ParametersViewModel: any

Property Value

TypeDescription
any

A View Model object.

|