Represents the available values for a ReportParameter
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
[TypeConverter(typeof(ExpandableObjectConverter))]
public sealed class ReportParameterAvailableValues : IDataItem, IDataFlow, IDataSourceContainer
Inheritance: objectReportParameterAvailableValues
Implements:
Constructors
TODO: Add documentation.
public ReportParameterAvailableValues()
Properties
DataSource
object
Gets or sets the data source used for retrieving the value / label pairs of the available values.
[TypeConverter(typeof(DataSourceConverter))]
public object DataSource { get; set; }
Implements:
For backwards compatibility reasons Telerik Reporting supports binding directly to IEnumberable/IListSource objects (incl. arrays, collections, DataSet, DataTable, DataView, and DbDataAdapter). Instead consider using the ObjectDataSource component that can handle these types of data sources.
DisplayMember
string
Gets or sets a string that specifies the property of the data source from which to draw the value labels.
public string DisplayMember { get; set; }
Specifies a column name, expression, or embedded expressions based on the DataSource schema. It is used as label in the value/label pair. If omitted the ValueMember will be used as DisplayMember as well. Optional.
Gets a FilterCollection that defines the filter expression(s).
public FilterCollection Filters { get; }
TODO: Add documentation.
[Browsable(false)]
[Obsolete("Please use Sortings property instead.")]
public SortingCollection Sorting { get; }
Gets a SortingCollection that defines the sort column(s), and their type and order.
public SortingCollection Sortings { get; }
ValueMember
string
Gets or sets a string that specifies the field of the data source from which to draw the values.
public string ValueMember { get; set; }
Specifies a column name, expression, or embedded expressions based on the DataSource schema. It is used as value in the value / label pair.
Methods
ToString()
string
TODO: Add documentation.
public override string ToString()
string
Overrides: