{description}
{excerpt}Deletes a worksheet from the workbook.{excerpt}
{signature:C#}
 public void Delete(int position)
{signature}{signature:vb.net}
Public Sub Delete(ByVal position As Integer)
{signature}
{parameters}
{param:position}The 0\-based sheet position.{param}
{example}{code:csharp|title=C#}
sheets.Delete(0);{code}
{code:vb.net|title=vb.net}
sheets.Delete(0){code}

{example}