[]
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.
int EndIndex { get; }
ReadOnly Property EndIndex As Integer
worksheet.Range["2:5"].Group();
IGroupInfo group = worksheet.Outline.RowGroupInfo[0];
int endIndex = group.EndIndex;