[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IGroupInfo.Parent

Parent Property

Parent

Gets the parent of current group.

Use this property to navigate from a nested group to the group that contains it.

Declaration
IGroupInfo Parent { get; }
ReadOnly Property Parent As IGroupInfo
Examples
worksheet.Range["2:8"].Group();
worksheet.Range["3:5"].Group();
IGroupInfo parentGroup = worksheet.Outline.RowGroupInfo[0];
IGroupInfo childGroup = parentGroup.Children[0];
IGroupInfo group = childGroup.Parent;