{description}
{excerpt}Inserts a number of rows in the worksheet above the specified row.{excerpt}
{signature:C#}
 public void InsertRows(int rowNumber, int rowCount)
{signature}{signature:vb.net}
Public Sub InsertRows(ByVal rowNumber As Integer, ByVal rowCount As Integer)
{signature}
{parameters}
{param:rowNumber}The 0\-based number of the row to insert.{param}
{param:rowCount}The number of rows to insert.{param}
{example}{code:csharp|title=C#}
ws.InsertRows(3, 100);{code}
{code:vb.net|title=vb.net}
ws.InsertRows(3, 100){code}

{example}