Skip to content

Latest commit

 

History

History
58 lines (27 loc) · 1.03 KB

1ba5d587-8ea3-b243-efdb-83e47acfc894.md

File metadata and controls

58 lines (27 loc) · 1.03 KB

SlideShowWindow.IsFullScreen Property (PowerPoint)

Returns whether the specified slide show window occupies the entire screen. Read-only.

Syntax

expression. IsFullScreen

expression A variable that represents an SlideShowWindow object.

Return Value

MsoTriState

Remarks

The value of the IsFullScreen property can be one of these MsoTriState constants.

Constant Description
msoFalse The specified slide show window does not occupy the entire screen.
msoTrue The specified slide show window occupies the entire screen.

Example

This example reduces the height of a full-screen slide show window just enough so that you can see the taskbar.

With Application.SlideShowWindows(1)

    If .IsFullScreen Then

        .Height = .Height - 20

    End If

End With

See also

Concepts

SlideShowWindow Object

Other resources

SlideShowWindow Object Members