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 worksheet. Use this collection to add, access, and remove pictures from the worksheet.

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

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [Pictures|Pictures] collection containing all pictures in the worksheet. Use this collection to add, access, and remove pictures from the worksheet.{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
vb.nettitle