Interface
IGroup

Describes a group

Definition

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

bool

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

ItemCount

Gets the Items count.

Declaration

int ItemCount { get; }

Property Value

int

The Items count.

Items

Gets the items in this groups.

Declaration

IEnumerable Items { get; set; }

Property Value

IEnumerable

The items in this group.

Key

Gets the key for this group.

Declaration

object Key { get; }

Property Value

object

The key for this group.

Member

The field name of the group

Declaration

string Member { get; set; }

Property Value

string

Subgroups

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

Declaration

ReadOnlyCollection<IGroup> Subgroups { get; }

Property Value

ReadOnlyCollection<IGroup>

The subgroups.