Class OperatorValueFilterViewModel
A view-model used by OperatorValueFilterControl. This is for internal use only and is not intended to be used directly from your code.
Inherited Members
Namespace: Telerik.Windows.Controls.Pivot.Editors.FilterDialogs
Assembly: Telerik.Windows.Controls.PivotFieldList.dll
Syntax
public class OperatorValueFilterViewModel : ViewModelBase, INotifyPropertyChanged, IDisposable
Properties
AvailableConditions
Gets the ConditionOptions available for selection in SelectedCondition.
Declaration
public IList<ConditionOption> AvailableConditions { get; }
Property Value
System.Collections.Generic.IList<ConditionOption>
|
DistinctValues
Gets the distinct values used by this control.
Declaration
public IEnumerable<object> DistinctValues { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Object>
The distinct values. |
From
Gets or sets a lower bound for various conditions.
Declaration
public object From { get; set; }
Property Value
System.Object
|
IgnoreCase
Gets or sets a value that indicates if string case should be ignored in the produced filter.
Declaration
public bool IgnoreCase { get; set; }
Property Value
System.Boolean
|
SelectedCondition
Gets or sets the selected ConditionOption.
Declaration
public ConditionOption SelectedCondition { get; set; }
Property Value
ConditionOption
|
Than
Gets or sets a base point for various conditions.
Declaration
public object Than { get; set; }
Property Value
System.Object
|
To
Gets or sets an upper bound for various conditions.
Declaration
public object To { get; set; }
Property Value
System.Object
|