Back to Devexpress

Parameter.LookUpSettings Property

corelibraries-devexpress-dot-xtrareports-dot-parameters-dot-parameter-6a0cb6b2.md

latest3.5 KB
Original Source

Parameter.LookUpSettings Property

Specifies the look-up editor settings of the parameter.

Namespace : DevExpress.XtraReports.Parameters

Assembly : DevExpress.Printing.v25.2.Core.dll

NuGet Package : DevExpress.Printing.Core

Declaration

csharp
[Browsable(false)]
public LookUpSettings LookUpSettings { get; set; }
vb
<Browsable(False)>
Public Property LookUpSettings As LookUpSettings

Property Value

TypeDescription
LookUpSettings

A LookUpSettings object.

|

Remarks

Use the ValueSourceSettings property instead of LookUpSettings.

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.

reporting-winforms-parameter-multivalue/CS/Program.cs#L40

csharp
// Assign the settings to the parameter's LookUpSettings property.
parameter1.LookUpSettings = lookupSettings;

reporting-use-multi-value-parameter-as-table-column-chooser/CS/T333639/SampleReport.cs#L29

csharp
// Assign the list of lookup values to the report's ReportColumns parameter.
this.Parameters["ReportColumns"].LookUpSettings = reportColumnsLookUpSettings;

reporting-winforms-parameter-multivalue/VB/Program.vb#L44

vb
' Assign the settings to the parameter's LookUpSettings property.
parameter1.LookUpSettings = lookupSettings

reporting-use-multi-value-parameter-as-table-column-chooser/VB/T333639/SampleReport.vb#L29

vb
' Assign the list of lookup values to the report's ReportColumns parameter.
Me.Parameters("ReportColumns").LookUpSettings = reportColumnsLookUpSettings
' Specify default lookup values.

See Also

Parameter Class

Parameter Members

DevExpress.XtraReports.Parameters Namespace