SlideShowTransition.Hidden property (PowerPoint)
Determines whether the specified slide is hidden during a slide show. Read/write.
Syntax
expression.Hidden
expression A variable that represents a SlideShowTransition object.
Return value
MsoTriState
Remarks
The value of the Hidden property can be one of these MsoTriState constants.
Constant | Description |
---|---|
msoFalse | The specified slide is not hidden during a slide show. |
msoTrue | The specified slide is hidden during a slide show. |
Example
This example makes slide two in the active presentation a hidden slide.
ActivePresentation.Slides(2).SlideShowTransition.Hidden = msoTrue
See also
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.