SourceGrid.Grid.GridRows.InsertRange C# (CSharp) Method

InsertRange() public method

Insert the specified number of rows at the specified position
public InsertRange ( int p_StartIndex, int p_Count ) : void
p_StartIndex int
p_Count int
return void
            public void InsertRange(int p_StartIndex, int p_Count)
            {
                RowInfo[] rows = new RowInfo[p_Count];
                for (int i = 0; i < rows.Length; i++)
                    rows[i] = CreateRow();

                InsertRange(p_StartIndex, rows);
            }