ClassGroup
Class
Describes a group
Definition
Namespace:Telerik.DataSource
Assembly:Telerik.DataSource.dll
Syntax:
cs-api-definition
public class Group : IGroup
Inheritance: objectGroup
Derived Classes:
Implements:
Constructors
Group()
Declaration
cs-api-definition
public Group()
Properties
HasSubgroups
Gets a value indicating whether this instance has any sub groups.
Declaration
cs-api-definition
public bool HasSubgroups { get; set; }
Property Value
true
if this instance has sub groups; otherwise, false
.
Implements
ItemCount
Gets the number of items in this group.
Declaration
cs-api-definition
public int ItemCount { get; set; }
Property Value
The items count.
Implements
Items
Gets the items in this groups.
Declaration
cs-api-definition
public IEnumerable Items { get; set; }
Property Value
The items in this group.
Implements
Key
Gets the key for this group.
Declaration
cs-api-definition
public object Key { get; set; }
Property Value
The key for this group.
Implements
Member
The name of the group field
Subgroups
Gets the subgroups, if HasSubgroups is true, otherwise empty collection.
Declaration
cs-api-definition
[IgnoreDataMember]
public ReadOnlyCollection<IGroup> Subgroups { get; }
Property Value
The subgroups.
Implements