Skip to content

Latest commit

 

History

History
51 lines (27 loc) · 810 Bytes

PowerPoint.SlideShowWindows.Count.md

File metadata and controls

51 lines (27 loc) · 810 Bytes
title api_name ms.assetid ms.date ms.localizationpriority
SlideShowWindows.Count property (PowerPoint)
PowerPoint.SlideShowWindows.Count
19f91cd6-c12d-92b1-21e9-a3a0916bf4df
06/08/2017
medium

SlideShowWindows.Count property (PowerPoint)

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

Syntax

expression.Count

expression A variable that represents a SlideShowWindows 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

SlideShowWindows Object

[!includeSupport and feedback]