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