Class GroupContext
Class that contains the information of the group like child groups, items count, key, details of the group, etc.
Inheritance
System.Object
    GroupContext
  Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.Portable.dll
Syntax
public class GroupContext : Object
  Constructors
GroupContext()
Initializes a new instance of the GroupContext class.
Declaration
public GroupContext()
  Properties
ChildGroups
Gets or sets the child groups of the group.
Declaration
public List<GroupContext> ChildGroups { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.List<GroupContext> | The child groups of the group.  | 
      
Count
Gets or sets the count of the sub-groups in the group.
Declaration
public int Count { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | The count of the sub-groups in the group.  | 
      
Details
Gets or sets the details of the group.
Declaration
public IEnumerable Details { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.IEnumerable | The details of the group.  | 
      
Key
Gets the key of the group.
Declaration
public object Key { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Object | The key of the group.  |