SlideShowWindow.IsFullScreen Property
Returns whether the specified slide show window occupies the entire screen. Read-only.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
ReadOnly Property IsFullScreen As MsoTriState
Get
'Usage
Dim instance As SlideShowWindow
Dim value As MsoTriState
value = instance.IsFullScreen
MsoTriState IsFullScreen { get; }
Property Value
Type: Microsoft.Office.Core.MsoTriState
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. |
Examples
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 .IsFullScreenThen
.Height = .Height - 20
End If
End With