Back to Devexpress

DynamicListLookUpSettings.DataMember Property

corelibraries-devexpress-dot-xtrareports-dot-parameters-dot-dynamiclistlookupsettings-543bef53.md

latest2.4 KB
Original Source

DynamicListLookUpSettings.DataMember Property

Specifies the data member name for the storage that contains the report parameter‘s predefined values.

Namespace : DevExpress.XtraReports.Parameters

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

NuGet Package : DevExpress.Printing.Core

Declaration

csharp
[DefaultValue("")]
public override string DataMember { get; set; }
vb
<DefaultValue("")>
Public Overrides Property DataMember As String

Property Value

TypeDefaultDescription
StringString.Empty

A String value.

|

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DataMember 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#L35

csharp
lookupSettings.DataSource = report.DataSource;
lookupSettings.DataMember = "Categories";
lookupSettings.DisplayMember = "CategoryName";

See Also

DynamicListLookUpSettings Class

DynamicListLookUpSettings Members

DevExpress.XtraReports.Parameters Namespace