[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IGroupInfo.StartIndex

StartIndex Property

StartIndex

Gets the start index of current group.

Use this property together with EndIndex to determine the row or column span covered by the group.

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