Class ParameterModel
Represents the report parameter model to associate the parameter editor UI with.
Namespace: Telerik.ReportViewer.Silverlight
Assembly: Telerik.ReportViewer.Silverlight.dll
Syntax
public class ParameterModel : ObservableObject, INotifyPropertyChanged, IDataErrorInfo
Properties
AllowNull
AutoRefresh
AvailableValues
Gets a list of the available ParameterValueModels.
Declaration
public virtual List<ParameterValueModel> AvailableValues { get; }
Property Value
System.Collections.Generic.List<ParameterValueModel>
|
ID
IsEnabled
Specifies whether the parameter editor is enabled or not.
Declaration
public bool IsEnabled { get; set; }
Property Value
System.Boolean
|
IsNull
Specifies whether the 'null' value is selected.
Declaration
public virtual bool IsNull { get; set; }
Property Value
System.Boolean
|
Multivalue
Name
SafeValue
Prevent user input to be considered as expression
Declaration
public object SafeValue { get; }
Property Value
System.Object
|
SelectedSingleValue
Gets or sets a single selected value.
Declaration
public ParameterValueModel SelectedSingleValue { get; set; }
Property Value
ParameterValueModel
|
Text
TextResources
Gets or sets all the tooltips and messages
Declaration
public ITextResources TextResources { get; }
Property Value
ITextResources
|
Type
Value
Gets or sets the Value.
Declaration
public virtual object Value { get; set; }
Property Value
System.Object
|
Methods
HasValidValue()
Returns Telerik.Reporting.Processing.Parameter.HasValidValue.
Declaration
public bool HasValidValue()
Returns
System.Boolean
|