Interface
IGroup

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

bool

true if this instance has sub groups; otherwise, false.

ItemCount

Gets the Items count.

Declaration

cs-api-definition
int ItemCount { get; }

Property Value

int

The Items count.

Items

Gets the items in this groups.

Declaration

cs-api-definition
IEnumerable Items { get; set; }

Property Value

IEnumerable

The items in this group.

Key

Gets the key for this group.

Declaration

cs-api-definition
object Key { get; }

Property Value

object

The key for this group.

Member

The field name of the group

Declaration

cs-api-definition
string Member { get; set; }

Property Value

string

Subgroups

Gets the subgroups, if HasSubgroups is true, otherwise empty collection.

Declaration

cs-api-definition
ReadOnlyCollection<IGroup> Subgroups { get; }

Property Value

ReadOnlyCollection<IGroup>

The subgroups.