SlideShowView.IsNamedShow Property (PowerPoint)
Determines whether a custom (named) slide show is displayed in the specified slide show view. Read-only.
Syntax
expression .IsNamedShow
expression A variable that represents an SlideShowView object.
Return Value
MsoTriState
Remarks
The value of the IsNamedShow property can be one of these MsoTriState constants.
Constant |
Description |
---|---|
msoFalse |
A custom (named) slide show is not displayed in the specified slide show view. |
msoTrue |
A custom (named) slide show is displayed in the specified slide show view. |
Example
If the slide show running in slide show window one is a custom slide show, this example displays its name.
With SlideShowWindows(1).View
If .IsNamedShow Then
MsgBox "Now showing in slide show window 1: " _
& .SlideShowName
End If
End With