Skip to main content
A newer version of this page is available. .

DashboardViewer.Parameters Property

Provides access to dashboard parameter settings and metadata.

Namespace: DevExpress.DashboardWin

Assembly: DevExpress.Dashboard.v21.1.Win.dll

NuGet Package: DevExpress.Win.Dashboard

Declaration

[Browsable(false)]
public DashboardParameters Parameters { get; }

Property Value

Type Description
DashboardParameters

A DashboardParameters object representing a collection of DashboardParameterDescriptor objects.

Remarks

DashboardParameterDescriptor class objects returned by the Parameters property allow you to obtain parameter settings such as the parameter type (the DashboardParameterDescriptor.Type property), the default parameter value (the DashboardParameterDescriptor.DefaultValue property), the parameter name (the DashboardParameterDescriptor.Name property), etc.

The DashboardParameterDescriptor.Values property returns possible parameter values. Use the DashboardParameterDescriptor.Value property to obtain or specify the current parameter value.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Parameters property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Implements

See Also