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
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.WinForms.dll
Syntax
public class GroupContext
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. |