Julian Moreno Asked: 2019-04-23 19:31:37 +0800 CST2019-04-23 19:31:37 +0800 CST 2019-04-23 19:31:37 +0800 CST 在 MS PowerPoint 中:是否有可能删除所有隐藏的幻灯片? 772 我有一个包含几张隐藏幻灯片的 PowerPoint 演示文稿,我想知道是否可以删除所有隐藏的幻灯片而不必一张一张地删除。 microsoft-powerpoint microsoft-office-2016 1 个回答 Voted Best Answer Steve Rindsberg 2019-04-24T14:00:02+08:002019-04-24T14:00:02+08:00 Dim x as Long For x = ActivePresentation.Slides.Count to 1 Step -1 With ActivePresentation.Slides(x) If .SlideShowTransition.Hidden = True Then .Delete End If End with Next
1 个回答