IsNamedShow Property
Applies To
SlideShowView object.
Description
True if a custom (named) slide show is displayed in the specified slide show view. Read-only Long.
See Also
SlideShowName property.
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