Class FilterItemViewModel
Represents a view model for the items in the filtering popup tree.
Inherited Members
Namespace: Telerik.WinForms.Controls.Spreadsheet.Controls
Assembly: Telerik.WinControls.RadSpreadsheet.dll
Syntax
public class FilterItemViewModel : SelectAllItem, INotifyPropertyChanged, 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 override List<IFilterViewModel> Children { get; set; }
  Property Value
| 
        System.Collections.Generic.List<IFilterViewModel>
         The children.  | 
    
Overrides
IsChecked
Gets or sets the value indicating whether the item is checked.
Declaration
public override bool? IsChecked { get; set; }
  Property Value
| 
        System.Nullable<System.Boolean>
         The value indicating whether the item is checked.  | 
    
Overrides
Name
Gets the name displayed for the item.
Declaration
public override string Name { get; }
  Property Value
| 
        System.String
         The name.  | 
    
Overrides
SelectAll
Gets the select all item.
Declaration
protected SelectAllItem SelectAll { get; }
  Property Value
| 
        SelectAllItem
         The select all item.  |