Class GroupContext
Represents the context that is passed to a RadCollectionViewGroupView control that represents a group within a RadCollectionView instance.
Inherited Members
Namespace: Telerik.Maui.Controls.CollectionView
Assembly: Telerik.Maui.Controls.dll
Syntax
public class GroupContext : NotifyPropertyChangedBase, INotifyPropertyChanged
Constructors
GroupContext()
Declaration
public GroupContext()
Properties
IsExpanded
Gets a value indicating whether the group, this context is associated with, is currently expanded (has its child items visible).
Declaration
public bool IsExpanded { get; }
Property Value
System.Boolean
|
Items
Gets the items contained within the group.
Declaration
public IReadOnlyList<object> Items { get; }
Property Value
System.Collections.Generic.IReadOnlyList<System.Object>
|
Key
Gets the key of the group.
Declaration
public object Key { get; }
Property Value
System.Object
|
Level
Gets the zero-based level (or the depth) of the group.
Declaration
public int Level { get; }
Property Value
System.Int32
|