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

{example}