Reputation: 3121
I'm using Office Interop for controling PowerPoint presentation from my app and I need to detect if specific slide is marked as hidden. How to achieve that? I checked documentation for Microsoft.Office.Interop.PowerPoint.Slide, but none of Slide properties exposes this information.
Upvotes: 2
Views: 929
Reputation: 2041
As discussed in the comments, the SlideShowTransition
interface has a Hidden
property that exposes this information:
You can access this via Slide.SlideShowTransition
Upvotes: 3