Class GroupHeaderContext
Represents the context that is passed to a ListViewGroupHeaderCell control that represents a group within a RadListView instance.
Inheritance
Namespace: Telerik.XamarinForms.DataControls.ListView
Assembly: Telerik.XamarinForms.DataControls.dll
Syntax
public class GroupHeaderContext : Object, INotifyPropertyChanged
Properties
IsExpanded
Gets or sets a value indicating whether the group is currently expanded (has its child items visible).
Declaration
public bool IsExpanded { get; set; }
Property Value
System.Boolean
|
Items
Gets the child items of the group.
Declaration
public IReadOnlyList<object> Items { get; }
Property Value
System.Collections.Generic.IReadOnlyList<System.Object>
|
Key
Gets the specific for the group key.
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
|
Methods
ToString()
Declaration
public override string ToString()
Returns
System.String
|
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|
Operators
Implicit(GroupHeaderContext to String)
Declaration
public static implicit operator string (GroupHeaderContext context)
Parameters
GroupHeaderContext
context
|
Returns
System.String
|