0

我想知道是否有办法确定是否为 MS Powerpoint 文件启用或禁用了 pagenumber 属性?

到目前为止,我的研究使我找到了这篇文章

在此我们需要阅读演示文稿的幻灯片,以便使用 HeadersFooters.SlideNumber.Visible 属性。

是否有一种全球性的方法可以通过将演示文稿作为一个整体来识别这一点?

例如:类似 Presentation.SlideNumber.Visible ???

PS:有没有办法对 .ppt 文件也这样做?

谢谢亚辛杜。

4

2 回答 2

1

我尚未对其进行测试,但PowerPoint 对象模型参考表明您想要查看: Presentation.SlideMaster.HeaderFooters(i).SlideNumber.Visible

于 2011-07-28T04:01:27.090 回答
0

每张幻灯片都可以显示或不显示页码。

Dim oSl as Slide
For Each oSl in ActivePresentation.Slides
If oSl.HeadersFooters.SlideNumber.Visible Then
  Debug.Print "Your slides, if not days, are numbered"
Else
  Debug.Print "Slides without number.  This one, anyhow."
End If
于 2011-07-30T03:42:59.327 回答