Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Deletes a slide from the presentation.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Deletes a slide from the presentation.{excerpt}
{signature:C#}
 public void Delete(int position)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub Delete(ByVal position As Integer)
Parameters
{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}
Param
positionposition

The 0-based slide position.

Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle