Interface
IGroup

Represents an item that is created after grouping.

Definition

Namespace:Telerik.Windows.Data

Assembly:Telerik.Windows.Data.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; }

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.

ParentGroup

Gets the parent group.

Declaration

cs-api-definition
IGroup ParentGroup { get; }

Property Value

IGroup

The parent group.

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.