New to Telerik UI for BlazorStart a free 30-day trial

IGroup

Interface

Describes a group

Definition

Namespace:Telerik.DataSource

Assembly:Telerik.DataSource.dll

Syntax:

C#
public interface IGroup

Derived Classes: AggregateFunctionsGroupGroup

Properties

Gets a value indicating whether this instance has sub groups.

C#
bool HasSubgroups { get; }
Property Value:

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

Gets the Items count.

C#
int ItemCount { get; }
Property Value:

The Items count.

Gets the items in this groups.

C#
IEnumerable Items { get; set; }
Property Value:

The items in this group.

Gets the key for this group.

C#
object Key { get; }
Property Value:

The key for this group.

The field name of the group

C#
string Member { get; set; }

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

C#
ReadOnlyCollection<IGroup> Subgroups { get; }
Property Value:

The subgroups.