Group
Class
Describes a group
Definition
Namespace:Telerik.DataSource
Assembly:Telerik.DataSource.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 subgroups, if HasSubgroups is true, otherwise empty collection.
C#
[IgnoreDataMember]
public ReadOnlyCollection<IGroup> Subgroups { get; }
The subgroups.
Implements: