{description}
{excerpt}Deletes a slide from the presentation.{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 slide position.{param}
{example}{code:csharp|title=C#}
slides.Delete(0);{code}
{code:vbnet|title=vb.net}
slides.Delete(0){code}

{example}