Group
Class
Represents an item that is created after grouping.
Definition
Namespace:Telerik.Windows.Data
Assembly:Telerik.Windows.Data.dll
Syntax:
C#
public class Group : IGroup
Inheritance: objectGroup
Derived Classes:
Implements:
Constructors
C#
public Group()
Properties
Gets a value indicating whether this instance has any sub groups.
C#
public bool HasSubgroups { get; set; }
true if this instance has sub groups; otherwise, false.
Implements:
Gets the number of items in this group.
C#
public int ItemCount { get; set; }
The items count.
Implements:
Gets the items in this groups.
C#
public IEnumerable Items { get; set; }
The items in this group.
Implements:
Gets the key for this group.
C#
public object Key { get; set; }
The key for this group.
Implements:
Gets the parent group.
C#
public IGroup ParentGroup { get; }
The parent group.
Implements:
Gets the subgroups, if HasSubgroups is true, otherwise empty collection.
C#
public ReadOnlyCollection<IGroup> Subgroups { get; }
The subgroups.
Implements: