[]
Represents the information of a group.
public interface IGroupInfo
Get children of current group.
List<IGroupInfo> Children { get; }
Gets the end index of current group.
int EndIndex { get; }
The end index of current group.
Get whether the current group is collapsed.
bool IsCollapsed { get; }
Gets the level of current group.
int Level { get; }
The level of current group.
Get the parent of current group.
IGroupInfo Parent { get; }
Gets the start index of current group.
int StartIndex { get; }
The start index of current group.
Collapses current group.
void Collapse()
Expands current group.
void Expand()