Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Excerpt

Returns the number of Picture objects in the collection.

Signature
C#
C#
<p> public  public int Count{ get; }
</p>
Signature
vb.net
vb.net
<p>Public Public ReadOnly Property Count() As Integer
Integer</p>
Example
 
Code Block
csharp
csharp
titleC#
 
          
Pictures allPics = slide1.Pictures;
          int numPics = allPics.Count();

Code Block
vbnet
vbnet
titlevb.net
          
Dim allPics As Pictures = slide1.Pictures
          Dim numPics As Integer = allPics.Count()
;


        
Example