Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Returns the slide at the specified position. This property is an indexer for the [Slides|Slides] class.{excerpt}
{signature:C#}
 public Slide this[int position] { get; }
{signature}{signature:vb.net}
Public Default ReadOnly Property Item(ByVal position As Integer) As Slide
{signature}
{parameters}
{param:position}The 0\-based position the worksheet to get.{param}
{returns}The slide at the specified position.{returns}
{example}{code:csharp|title=C#}
Slide Slide1 = Presentation.Slides[0];{code}
{code:vbnet|title=vb.net}
Dim Slide1 As Slide = Presentation.Slides(0){code}

{example}