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

See also

SlideShowView Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.