SlideShowName Property
Applies To
ActionSetting object, PrintOptions object, SlideShowSettings object, SlideShowView object.
Description
ActionSetting object: Returns or sets the name of the custom slide show to run in response to a mouse action on the shape during a slide show. Read/write String.
PrintOptions object: Returns or sets the name of the custom slide show to print. Read/write String.
SlideShowView object: Returns the name of the custom slide show that's currently running in the specified slide show view. Read-only String.
Remarks
The RangeType property must be set to ppPrintNamedSlideShow to print a custom slide show.
See Also
Action property, IsNamedShow 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
This example prints the custom slide show "Technical Talk".
With ActivePresentation.PrintOptions
.RangeType = ppPrintNamedSlideShow
.SlideShowName = "tech talk"
End With
ActivePresentation.PrintOut