[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IGroupInfo.Children

Children Property

Children

Gets the child groups of the current group.

Child groups are nested outline groups whose range is contained within the current group. Use this property to traverse the outline hierarchy after retrieving a group from RowGroupInfo or ColumnGroupInfo.

Declaration
List<IGroupInfo> Children { get; }
ReadOnly Property Children As List(Of IGroupInfo)
Examples
worksheet.Range["1:4"].Group();
worksheet.Range["2:3"].Group();
IGroupInfo group = worksheet.Outline.RowGroupInfo[0];
List<IGroupInfo> children = group.Children;