Class GroupHeaderTapEventArgs
Represents the arguments that are passed to the GroupHeaderTapped.
Inheritance
System.Object
GroupHeaderTapEventArgs
Namespace: Telerik.XamarinForms.DataControls.ListView
Assembly: Telerik.XamarinForms.DataControls.dll
Syntax
public class GroupHeaderTapEventArgs : EventArgs
Constructors
GroupHeaderTapEventArgs(GroupHeaderContext)
Initializes a new instance of the GroupHeaderTapEventArgs class.
Declaration
public GroupHeaderTapEventArgs(GroupHeaderContext context)
Parameters
GroupHeaderContext
context
|
Properties
IsExpanded
Gets a value indicating whether the group is currently expanded (has its child items visible).
Declaration
public bool IsExpanded { get; }
Property Value
System.Boolean
|
Items
Gets the child items of the group.
Declaration
public IEnumerable<object> Items { get; }
Property Value
System.Collections.Generic.IEnumerable<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
|