Interface IGroup
Describes a group
Namespace: Telerik.DataSource
Assembly: Telerik.DataSource.dll
Syntax
public interface IGroup
Properties
HasSubgroups
Gets a value indicating whether this instance has sub groups.
Declaration
bool HasSubgroups { get; }
Property Value
System.Boolean
|
ItemCount
Gets the Items count.
Declaration
int ItemCount { get; }
Property Value
System.Int32
The Items count. |
Items
Gets the items in this groups.
Declaration
IEnumerable Items { get; set; }
Property Value
System.Collections.IEnumerable
The items in this group. |
Key
Gets the key for this group.
Declaration
object Key { get; }
Property Value
System.Object
The key for this group. |
Member
The field name of the group
Declaration
string Member { get; set; }
Property Value
System.String
|
Subgroups
Gets the subgroups, if HasSubgroups is true, otherwise empty collection.
Declaration
ReadOnlyCollection<IGroup> Subgroups { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<IGroup>
The subgroups. |