Class DistinctValueItem
An item that is used when displaying distinct values in the DataGridDistinctValuesFilterView.
This item carries information about the associated distinct value and whether or not it is selected,
i.e. whether or not the distinct value should be included in the
Inherited Members
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DistinctValueItem : NotifyPropertyChangedBase, INotifyPropertyChanged
Constructors
DistinctValueItem()
Declaration
public DistinctValueItem()
Properties
IsSelected
Gets or sets a value indicating whether the item is selected, i.e. whether the associated
distinct value should be added to the
Declaration
public bool IsSelected { get; set; }
Property Value
System.Boolean
|
Text
Gets or sets the user-friendly text of the value, i.e. the formatted value.
Declaration
public string Text { get; set; }
Property Value
System.String
|
Value
Gets or sets the distinct value this item is associated with.
Declaration
public object Value { get; set; }
Property Value
System.Object
|