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 Pictures collection containing all pictures in the slide. Use this collection to add, access, and remove pictures from the slide.

{signature}
{example}{code:csharp|title=C#}
Pictures allPictures = slide1.Pictures;
{code}
{code:vbnet|title=vb.net
}
Dim allPictures = slide1.Pictures{code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [Pictures|Pictures] collection containing all pictures in the slide. Use this collection to add, access, and remove pictures from the slide.{excerpt}
{signature:C#}
 public Pictures Pictures{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Pictures() As Pictures
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle