SlideShowView.SlideShowName Property (PowerPoint)
Returns the name of the custom slide show that's currently running in the specified slide show view. Read-only.
Syntax
expression .SlideShowName
expression A variable that represents a SlideShowView object.
Return Value
String
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