Skip to content

Latest commit

 

History

History
51 lines (27 loc) · 776 Bytes

PowerPoint.ObjectVerbs.Count.md

File metadata and controls

51 lines (27 loc) · 776 Bytes
title api_name ms.assetid ms.date ms.localizationpriority
ObjectVerbs.Count property (PowerPoint)
PowerPoint.ObjectVerbs.Count
8aabdb50-1e4a-655b-5336-5ae7be5a65b1
06/08/2017
medium

ObjectVerbs.Count property (PowerPoint)

Returns the number of objects in the specified collection. Read-only.

Syntax

expression.Count

expression A variable that represents an ObjectVerbs object.

Return value

Long

Example

This example closes all windows except the active window.

With Application.Windows

    For i = 2 To .Count

        .Item(2).Close

    Next

End With

See also

ObjectVerbs Object

[!includeSupport and feedback]