ClassReportParameterAvailableValues
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
ReportParameterAvailableValues()
TODO: Add documentation.
Declaration
public ReportParameterAvailableValues()
Properties
DataSource
Gets or sets the data source used for retrieving the value / label pairs of the available values.
Declaration
[TypeConverter(typeof(DataSourceConverter))]
public object DataSource { get; set; }
Property Value
object
Implements
Remarks
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
Gets or sets a string that specifies the property of the data source from which to draw the value labels.
Declaration
public string DisplayMember { get; set; }
Property Value
string
Remarks
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.
Filters
Gets a FilterCollection that defines the filter expression(s).
Declaration
public FilterCollection Filters { get; }
Property Value
Sorting
TODO: Add documentation.
Declaration
[Browsable(false)]
[Obsolete("Please use Sortings property instead.")]
public SortingCollection Sorting { get; }
Property Value
Sortings
Gets a SortingCollection that defines the sort column(s), and their type and order.
Declaration
public SortingCollection Sortings { get; }
Property Value
ValueMember
Gets or sets a string that specifies the field of the data source from which to draw the values.
Declaration
public string ValueMember { get; set; }
Property Value
string
Remarks
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()
TODO: Add documentation.
Declaration
public override string ToString()
Returns
string
Overrides