{description}
{excerpt}Deletes a worksheet from the workbook.{excerpt}
{signature:C#}
 public void Delete(System.String name)
{signature}{signature:vb.net}
Public Sub Delete(ByVal name As String)
{signature}
{parameters}
{param:name}The name of the sheet to remove.{param}
{example}{code:csharp|title=C#}
sheets.Delete("Sheet3");{code}
{code:vb.net|title=vb.net}
sheets.Delete("Sheet3"){code}

{example}