Description |
---|
Excerpt |
---|
Returns the number of Picture objects in the collection. |
Signature | ||||
---|---|---|---|---|
| ||||
<table class="diff-macro"><thead><tr><th class="diff-macro-title">unmigrated-wiki-markup</th></tr></thead><tbody><tr><td class="diff-macro-body"><pre> <pre> public int Count{ get; } </pre></td></tr></tbody></table>pre> |
Signature | ||||
---|---|---|---|---|
| ||||
<p>Public ReadOnly Property Count() As Integer</p> |
Example |
---|
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
Pictures allPics = slide1.Pictures;
int numPics = allPics.Count();
|
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
Dim allPics As Pictures = slide1.Pictures
Dim numPics As Integer = allPics.Count()
|
Example |
---|