Skip to content

Latest commit

 

History

History
54 lines (30 loc) · 837 Bytes

PowerPoint.GroupShapes.Count.md

File metadata and controls

54 lines (30 loc) · 837 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
GroupShapes.Count property (PowerPoint)
vbapp10.chm549002
vbapp10.chm549002
PowerPoint.GroupShapes.Count
1535f42d-43de-a9e2-0972-a1bb34b5578f
06/08/2017
medium

GroupShapes.Count property (PowerPoint)

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

Syntax

expression.Count

expression A variable that represents a GroupShapes object.

Return value

[INT]

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

GroupShapes Object

[!includeSupport and feedback]