Page tree
Skip to end of metadata
Go to start of metadata

Description

The Pictures collection represents the set of pictures in a worksheet. To return a Pictures collection, use Worksheet.Pictures.

C#
vb.net

Properties

Name

Description

Count

Returns the number of Picture objects in the collection.

Indexers

Name

Description

Item(Int32)

Returns the Picture object at the specified position in the Pictures collection. Picture is the indexer for the Pictures class.

Item(String)

Returns the Picture object with the specified name in the Pictures collection. Picture is the indexer for the Pictures class.

Methods

Name

Description

CreatePicture(String, Anchor)

Creates a new Picture object from an existing image.

CreatePicture(System.IO.Stream, Anchor)

Creates a new Picture object from an existing image.

GetEnumerator()

Returns an IEnumerator for the Pictures in a Worksheet

ListPictures()

Returns an array of all the Picture objects in the worksheet.

Remove(Int32)

Deletes the specified Picture object from the worksheet.

Remove(Picture)

Deletes the specified Picture object from the worksheet.
  • No labels