title | api_name | ms.assetid | ms.date | ms.localizationpriority | |
---|---|---|---|---|---|
ObjectVerbs.Count property (PowerPoint) |
|
8aabdb50-1e4a-655b-5336-5ae7be5a65b1 |
06/08/2017 |
medium |
Returns the number of objects in the specified collection. Read-only.
expression.Count
expression A variable that represents an ObjectVerbs object.
Long
This example closes all windows except the active window.
With Application.Windows
For i = 2 To .Count
.Item(2).Close
Next
End With
[!includeSupport and feedback]