Page tree

Versions Compared

Key

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

Excerpt

Returns a Slides collection which provides access to all slides in the specified presentation.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [Slides|Slides] collection which provides access to all slides in the specified presentation. {excerpt}
{signature:C#}
 public Slides Slides{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Slides() As Slides
Remarks

Use the Slides object to manage the slides in a presentation.

{signature}
{remarks}
Use the {{Slides}} object to manage the slides in a presentation.

{remarks}
{example}{code:csharp|title=C#}
Slides slidess = pres.Slides;
{code}
{code:vbnet|title=vb.net
}
Dim slides As Slides = pres.Slides{code}

{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle