Interface IDataGroup
Defines the abstraction of a group of items within a data component.
Namespace: Telerik.XamarinForms.Common.Data
Assembly: Telerik.XamarinForms.Common.dll
Syntax
public interface IDataGroup
Properties
ChildItems
Gets the child items of the group. These might be either groups or data items.
Declaration
IReadOnlyList<object> ChildItems { get; }
Property Value
System.Collections.Generic.IReadOnlyList<System.Object>
|
Key
Gets the key of the group.
Declaration
object Key { get; }
Property Value
System.Object
|
Level
Gets the zero-based level of this group in the Group Tree as defined by the GroupDescriptors collection within a data component.
Declaration
int Level { get; }
Property Value
System.Int32
|
ParentGroup
Gets the parent group (if any).
Declaration
IDataGroup ParentGroup { get; }
Property Value
IDataGroup
|