Document.PageSetup 属性 (Publisher)
返回一个 PageSetup 对象,该对象代表出版物的页面大小、页面布局和纸张设置。 此为只读属性。
语法
表达式。PageSetup
表达 一个代表 Document 对象的变量。
返回值
PageSetup
备注
在一张打印纸上打印多个页面时,您只能使用 PageSetup 属性。 如果页面大小大于纸张大小的一半,则 Microsoft Publisher 将显示错误。
示例
以下示例将出版物的页面设置选项指定为在每张打印纸上打印多个出版物页面。
Sub SetTopMargin()
With ActiveDocument.PageSetup
.PageHeight = InchesToPoints(5)
.PageWidth = InchesToPoints(8)
.MultiplePagesPerSheet = True
.TopMargin = InchesToPoints(0.25)
.LeftMargin = InchesToPoints(0.25)
End With
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。