Interface
IGroupInfo

Defines basic methods and properties of a group item.

Definition

Namespace:Telerik.Windows.Controls.ScheduleView

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

cs-api-definition
public interface IGroupInfo

Properties

Group

Gets the group.

Declaration

cs-api-definition
CollectionViewGroup Group { get; }

Property Value

CollectionViewGroup

IsBottomLevel

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

Declaration

cs-api-definition
bool IsBottomLevel { get; }

Property Value

bool

ItemCount

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

Declaration

cs-api-definition
int ItemCount { get; }

Property Value

int

Items

Gets the immediate items contained in this group.

Declaration

cs-api-definition
ReadOnlyObservableCollection<object> Items { get; }

Property Value

ReadOnlyObservableCollection<object>

Level

Gets the group level.

Declaration

cs-api-definition
int Level { get; }

Property Value

int

Name

Gets the name of this group.

Declaration

cs-api-definition
object Name { get; }

Property Value

object

ParentGroupInfo

Gets the parent group.

Declaration

cs-api-definition
IGroupInfo ParentGroupInfo { get; }

Property Value

IGroupInfo