IGroup
Interface
Describes a group
Definition
Namespace:Telerik.DataSource
Assembly:Telerik.DataSource.dll
Syntax:
C#
public interface IGroup
Derived Classes:
Properties
Gets a value indicating whether this instance has sub groups.
C#
bool HasSubgroups { get; }
true if this instance has sub groups; otherwise, false.
Gets the items in this groups.
C#
IEnumerable Items { get; set; }
The items in this group.
Gets the subgroups, if HasSubgroups is true, otherwise empty collection.
C#
ReadOnlyCollection<IGroup> Subgroups { get; }
The subgroups.