Interface IGroupInfo
Defines basic methods and properties of a group item.
Namespace: Telerik.Windows.Controls.ScheduleView
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public interface IGroupInfo
Properties
Group
Gets the group.
Declaration
CollectionViewGroup Group { get; }
Property Value
System.Windows.Data.CollectionViewGroup
|
IsBottomLevel
Gets a value that indicates whether this group has any subgroups.
Declaration
bool IsBottomLevel { get; }
Property Value
System.Boolean
|
ItemCount
Gets the number of items in the sub tree under this group.
Declaration
int ItemCount { get; }
Property Value
System.Int32
|
Items
Gets the immediate items contained in this group.
Declaration
ReadOnlyObservableCollection<object> Items { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyObservableCollection<System.Object>
|
Level
Gets the group level.
Declaration
int Level { get; }
Property Value
System.Int32
|
Name
Gets the name of this group.
Declaration
object Name { get; }
Property Value
System.Object
|