New to Telerik UI for WinFormsStart a free 30-day trial

Represents a view model for the date items in the filtering popup tree.

Definition

Constructors

Initializes a new instance of the DateItemViewModel class.

C#
public DateItemViewModel(string name, int numericValue, List<IFilterViewModel> children, IFilterViewModel parent, SelectAllItem selectAll)
Parameters:namestring

The name.

numericValueint

The numeric value.

childrenList<IFilterViewModel>

The children.

parentIFilterViewModel

The parent.

selectAllSelectAllItem

The select all.

Properties

Gets or sets the children of the item.

C#
public override List<IFilterViewModel> Children { get; set; }
Property Value:

The children.

Overrides: FilterItemViewModel.Children

Gets or sets the value indicating whether the item is checked.

C#
public override bool? IsChecked { get; set; }
Property Value:

The value indicating whether the item is checked.

Overrides: FilterItemViewModel.IsChecked

Gets the numeric value.

C#
public int NumericValue { get; }
Property Value:

The numeric value.