|
一、Options 对象
代表 Microsoft PowerPoint 中的应用程序选项。
使用 Options 对象
使用 Options 属性返回一个 Options 对象。以下示例设置 PowerPoint 的三个应用程序选项。
Sub TogglePasteOptionsButton()
With Application.Options
If .DisplayPasteOptions = False Then
.DisplayPasteOptions = True
End If
End With
End Sub
二、PageSetup 对象
包含演示文稿中有关幻灯片、备注页、讲义及大纲的页面设置的信息。
使用 PageSetup 对象
使用 PageSetup 属性返回 PageSetup 对象。以下示例将当前演示文稿中所有幻灯片设为宽 11 英寸、高 8.5 英寸,并将演示文稿的幻灯片编号设为从 17 开始。
With ActivePresentation.PageSetup
.SlideWidth = 11 * 72
.SlideHeight = 8.5 * 72
.FirstSlideNumber = 17
End With
|
|