Skip to main content
All docs
V18.2

ASPxClientWebDocumentViewer.GetParametersModel() Method

Provide access to the report parameters’ client-side model.

Namespace: DevExpress.XtraReports.Web.Scripts

Assembly: DevExpress.XtraReports.v18.2.Web.Scripts.dll

Declaration

public ASPxClientSideParametersModel GetParametersModel()

Returns

Type Description
ASPxClientSideParametersModel

An object that specifies the report parameters model.

Remarks

The model returned by the GetParametersModel method provides access to all available report parameters and allows you to provide their values on the client side, as illustrated below:

var parameterValue = 1;
ASPxWebDocumentViewer1.GetParametersModel()["parameter1"](parameterValue);
See Also