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

 public Picture this[int index] { get; }
Public Default ReadOnly Property Item(ByVal index As Integer) As Picture

A valid index between 0 and Pictures.Count.

The Picture object at the specified position.

 
          Pictures allPics = slide1.Pictures;
          Picture firstPic = allPics[0];


          Dim allPics As Pictures = slide1.Pictures
          Dim firstPic As Integer = allPics(0)