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

IGroup

Interface

A pivot group abstraction.

Definition

Namespace:Telerik.Pivot.Core

Assembly:Telerik.WinControls.PivotGrid.dll

Syntax:

C#
public interface IGroup

Properties

IGroups contained within this IGroup.

C#
IReadOnlyList<IGroup> Groups { get; }

Gets a value that indicates if the Groups is empty.

C#
bool HasGroups { get; }

Gets the level of the IGroup.

C#
int Level { get; }

Gets the name of this group.

C#
object Name { get; }

Gets the parent IGroup. This instance would be in its parent's Groups list.

C#
IGroup Parent { get; }

Gets the type of the group.

C#
GroupType Type { get; }