返回介绍

PrintOptions 对象

发布于 2019-10-04 14:06:44 字数 1287 浏览 715 评论 0 收藏 0

Presentation
PrintOptions
PrintRanges (PrintRange)

包含演示文稿的打印选项。

注意指定PrintOut 方法的可选参数FromToCopiesCollate 将设置PrintOptions 对象的相应属性。

使用 PrintOptions 对象

使用PrintOptions 属性返回PrintOptions 对象。以下示例以非逐份方式打印当前演示文稿所有幻灯片(无论可见或隐藏)的两个彩色副本。该示例还调整每个幻灯片的大小以适应打印页,并给每个幻灯片加细边框。

With ActivePresentation
 With .PrintOptions
 .NumberOfCopies = 2
 .Collate = False
 .PrintColorType = ppPrintColor
 .PrintHiddenSlides = True
 .FitToPage = True
 .FrameSlides = True
 .OutputType = ppPrintOutputSlides
 End With
 .PrintOut
End With

使用RangeType 属性指定打印整个演示文稿或指定部分。如果只想打印特定幻灯片,请将RangeType 属性设为ppPrintSlideRange,并使用Ranges 属性指定要打印的页。以下示例打印当前演示文稿中第一、四、五、六张幻灯片。

With ActivePresentation
 With .PrintOptions
 .RangeType = ppPrintSlideRange
 With .Ranges
 .Add 1, 1
 .Add 4, 6
 End With
 End With
 .PrintOut
End With

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文