Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ASPxClientParametersResetEventArgs Class

#Declaration

TypeScript
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

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

#Parameters

Name Type Description
parametersModel any

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

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

#Property Value

Type Description
IParameter[]

An IParameter array.

#ParametersViewModel Property

Provides access to a View Model for report parameters.

#Declaration

TypeScript
ParametersViewModel: any

#Property Value

Type Description
any

A View Model object.