Class Group
Represents an item that is created after grouping.
Inheritance
Namespace: Telerik.Windows.Data
Assembly: Telerik.Windows.Data.dll
Syntax
public class Group : Object, IGroup
Constructors
Group()
Declaration
public Group()
Properties
HasSubgroups
Gets a value indicating whether this instance has any sub groups.
Declaration
public bool HasSubgroups { get; set; }
Property Value
System.Boolean
|
Implements
ItemCount
Gets the number of items in this group.
Declaration
public int ItemCount { get; set; }
Property Value
System.Int32
The items count. |
Implements
Items
Gets the items in this groups.
Declaration
public IEnumerable Items { get; set; }
Property Value
System.Collections.IEnumerable
The items in this group. |
Implements
Key
Gets the key for this group.
Declaration
public object Key { get; set; }
Property Value
System.Object
The key for this group. |
Implements
ParentGroup
Gets the parent group.
Declaration
public IGroup ParentGroup { get; }
Property Value
IGroup
The parent group. |
Implements
Subgroups
Gets the subgroups, if HasSubgroups is true, otherwise empty collection.
Declaration
public ReadOnlyCollection<IGroup> Subgroups { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<IGroup>
The subgroups. |
Implements
Methods
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
|
Returns
System.Boolean
|
GetHashCode()
Declaration
public override int GetHashCode()
Returns
System.Int32
|
ToString()
Declaration
public override string ToString()
Returns
System.String
|