TextFrame.MarginBottom 属性 (Publisher)
返回或设置一个 Variant 类型的值,该值代表文本与单元格、文本框架或页面的下边缘之间 () 磅 的空间量。 读/写。
语法
表达式。MarginBottom
表达 一个代表 TextFrame 对象的变量。
示例
以下示例将当前出版物的边距设置为 2 英寸。
Sub SetPageMargins()
With ActiveDocument.LayoutGuides
.MarginTop = Application.InchesToPoints(Value:=2)
.MarginBottom = Application.InchesToPoints(Value:=2)
.MarginLeft = Application.InchesToPoints(Value:=2)
.MarginRight = Application.InchesToPoints(Value:=2)
End With
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。