Class FilterItemViewModel
Represents a view model for the items in the filtering popup tree.
Inheritance
Namespace: Telerik.Windows.Controls.Spreadsheet.Controls
Assembly: Telerik.Windows.Controls.Spreadsheet.dll
Syntax
public class FilterItemViewModel : NotifyPropertyChangedBase, IFilterViewModel
Constructors
FilterItemViewModel(String, SelectAllItem)
Initializes a new instance of the FilterItemViewModel class.
Declaration
public FilterItemViewModel(string name, SelectAllItem selectAll)
Parameters
System.String
name
The name. |
SelectAllItem
selectAll
The select all. |
Properties
Children
Gets or sets the children of the item.
Declaration
public virtual List<IFilterViewModel> Children { get; set; }
Property Value
System.Collections.Generic.List<IFilterViewModel>
The children. |
Implements
IsChecked
Gets or sets the value indicating whether the item is checked.
Declaration
public virtual Nullable<bool> IsChecked { get; set; }
Property Value
System.Nullable<System.Boolean>
The value indicating whether the item is checked. |
Implements
Name
Gets the name displayed for the item.
Declaration
public string Name { get; }
Property Value
System.String
The name. |
Implements
SelectAll
Gets the select all item.
Declaration
protected SelectAllItem SelectAll { get; }
Property Value
SelectAllItem
The select all item. |