[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IOutline.RowGroupInfo

RowGroupInfo Property

RowGroupInfo

Gets information about all groups in the row direction.

Returns the top-level row groups in the worksheet outline. Nested row groups can be accessed from the child groups of each returned IGroupInfo.

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