[]
Gets the start index of current group.
Use this property together with EndIndex to determine the row or column span covered by the group.
int StartIndex { get; }
ReadOnly Property StartIndex As Integer
worksheet.Range["2:5"].Group();
IGroupInfo group = worksheet.Outline.RowGroupInfo[0];
int startIndex = group.StartIndex;