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

ASPxClientReportParametersPanel Class

The client-side equivalent of the ASPxClientDocumentViewer control’s Parameters Panel.

#Declaration

TypeScript
declare class ASPxClientReportParametersPanel extends ASPxClientControl

#Remarks

To access an ASPxClientReportParametersPanel, call the ASPxClientDocumentViewer.GetParametersPanel method.

#Inheritance

ASPxClientControlBase
ASPxClientControl
ASPxClientReportParametersPanel
See Also

#Methods

#AssignParameter(path, value) Method

Assigns a value to a parameter of the report displayed in the document viewer.

#Declaration

TypeScript
AssignParameter(
    path: string,
    value: any
): void

#Parameters

Name Type Description
path string

A System.String specifying the parameter’s path.

value any

An object specifying the parameter value.

#AssignParameters(parametersInfo) Method

Assigns a value to a parameter of the report displayed in the document viewer.

#Declaration

TypeScript
AssignParameters(
    parametersInfo: ASPxClientReportParameterInfo[]
): void

#Parameters

Name Type Description
parametersInfo ASPxClientReportParameterInfo[]

An array of ASPxClientReportParameterInfo values specifying parameters and values to assign.

#GetEditorByParameterName(parameterName) Method

Returns a value editor that is associated with a parameter with the specified name.

#Declaration

TypeScript
GetEditorByParameterName(
    parameterName: string
): ASPxClientControl

#Parameters

Name Type Description
parameterName string

A String value, specifying the parameter name.

#Returns

Type Description
ASPxClientControl

An editor.

#GetParameterNames Method

Returns an array storing the names of parameters available in a report.

#Declaration

TypeScript
GetParameterNames(): string[]

#Returns

Type Description
string[]

An array of String values.