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

...

Description

Excerpt

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

Signature
C#
C#
 public Slides Slides{ get; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public ReadOnly Property Slides() As Slides
{signature}
{remarks}
Use the {{Slides}} object to manage the slides in a presentation.

{remarks}
{example}{code:csharp|title=C#}
Remarks

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

Example
Code Block
csharp
csharp
titleC#

Slides slidess = pres.Slides;
{code} {code:vbnet|title=
Code Block
vbnet
vbnet
titlevb.net
}

Dim slides As Slides = pres.Slides
{code} {example}