Skip to main content

DashboardParameter.LookUpSettings Property

Gets or sets the look-up settings of the dashboard parameter.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v23.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

Declaration

[DefaultValue(null)]
[LocalizableCategory(DataAccessStringId.PropertyGridDataCategoryName)]
public ParameterLookUpSettings LookUpSettings { get; set; }

Property Value

Type Default Description
ParameterLookUpSettings null

A ParameterLookUpSettings descendant that specifies the look-up settings of the dashboard parameter.

Remarks

The following look-up settings are available in the WinForms Dashboard:

No Look-Up
Pass null to the DashboardParameter.LookUpSettings property.
Static List
Pass an instance of the StaticListLookUpSettings class to the DashboardParameter.LookUpSettings property. Use the Values property to specify the list of static values for the dashboard parameter.
Dynamic List
Pass an instance of the DynamicListLookUpSettings class to the DashboardParameter.LookUpSettings property. Specify the settings to provide access to data source values.

Examples

Dashboard for WinForms - How to Pass a Dashboard Parameter to a Filter String

Dashboard for WinForms - How to Pass a Dashboard Parameter to a Calculated Field’s Expression

Dashboard for WinForms - How to Pass a Dashboard Parameter to a Custom SQL query

The following code snippets (auto-collected from DevExpress Examples) contain references to the LookUpSettings 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.

See Also