Skip to content

Latest commit

 

History

History
63 lines (34 loc) · 1.22 KB

PowerPoint.Application.SlideShowWindows.md

File metadata and controls

63 lines (34 loc) · 1.22 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.SlideShowWindows property (PowerPoint)
vbapp10.chm502006
vbapp10.chm502006
PowerPoint.Application.SlideShowWindows
4beed51c-bb67-6208-c2b1-f1d5b6425d9b
06/08/2017
medium

Application.SlideShowWindows property (PowerPoint)

Returns a SlideShowWindows collection that represents all open slide show windows. Read-only.

Syntax

expression. SlideShowWindows

expression A variable that represents an Application object.

Return value

SlideShowWindows

Remarks

For information about returning a single member of a collection, see Returning an object from a collection.

Example

This example runs a slide show in a window and sets the height and width of the slide show window.

With Application

    .Presentations(1).SlideShowSettings.Run

    With .SlideShowWindows(1)

        .Height = 250

        .Width = 250

    End With

End With

See also

Application Object

[!includeSupport and feedback]