InterfaceIGroup
Interface
Represents an item that is created after grouping.
Definition
Namespace:Telerik.Windows.Data
Assembly:Telerik.Windows.Data.dll
Syntax:
cs-api-definition
public interface IGroup
Properties
HasSubgroups
Gets a value indicating whether this instance has sub groups.
Declaration
cs-api-definition
bool HasSubgroups { get; }
Property Value
true if this instance has sub groups; otherwise, false.
Items
Gets the items in this groups.
Declaration
cs-api-definition
IEnumerable Items { get; }
Property Value
The items in this group.
Key
Gets the key for this group.
ParentGroup
Gets the parent group.
Subgroups
Gets the subgroups, if HasSubgroups is true, otherwise empty collection.
Declaration
cs-api-definition
ReadOnlyCollection<IGroup> Subgroups { get; }
Property Value
The subgroups.