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

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.