Share via


SlideShowTransition.Hidden Property

PowerPoint Developer Reference

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.

Visual Basic for Applications
  ActivePresentation.Slides(2).SlideShowTransition.Hidden = msoTrue

See Also