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

IGroupInfo

Interface

Defines basic methods and properties of a group item.

Definition

Namespace:Telerik.Windows.Controls.ScheduleView

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

C#
public interface IGroupInfo

Properties

Group

CollectionViewGroup

Gets the group.

C#
CollectionViewGroup Group { get; }

Gets a value that indicates whether this group has any subgroups.

C#
bool IsBottomLevel { get; }

Gets the number of items in the sub tree under this group.

C#
int ItemCount { get; }

Gets the immediate items contained in this group.

C#
ReadOnlyObservableCollection<object> Items { get; }

Gets the group level.

C#
int Level { get; }

Gets the name of this group.

C#
object Name { get; }

Gets the parent group.

C#
IGroupInfo ParentGroupInfo { get; }