InterfaceIGroup
Interface
Describes a group
Definition
Namespace:Telerik.DataSource
Assembly:Telerik.DataSource.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; set; }
Property Value
The items in this group.
Key
Gets the key for this group.
Member
The field name of the group
Subgroups
Gets the subgroups, if HasSubgroups is true, otherwise empty collection.
Declaration
cs-api-definition
ReadOnlyCollection<IGroup> Subgroups { get; }
Property Value
The subgroups.