[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IGroupInfo.EndIndex

EndIndex Property

EndIndex

Gets the end index of current group.

The returned value identifies the last row or column index included in this group, depending on whether the group belongs to row or column outline information.

Declaration
int EndIndex { get; }
ReadOnly Property EndIndex As Integer
Examples
worksheet.Range["2:5"].Group();
IGroupInfo group = worksheet.Outline.RowGroupInfo[0];
int endIndex = group.EndIndex;