PageSetup.RightMargin 属性 (Excel)
返回或设置右边距的大小(以 磅为单位)。 读/写 Double。
语法
表达式。RightMargin
表达 一个代表 PageSetup 对象的变量。
备注
边距的设置和返回均以磅为单位。 使用 InchesToPoints 方法或 CentimetersToPoints 方法执行转换。
示例
本示例将 Sheet1 的右边距设置为 1.5 英寸。
Worksheets("Sheet1").PageSetup.RightMargin = _
Application.InchesToPoints(1.5)
本示例将 Sheet1 的右边距设置为 2 厘米。
Worksheets("Sheet1").PageSetup.RightMargin = _
Application.CentimetersToPoints(2)
本示例显示 Sheet1 中右边距的当前设置。
marginInches = Worksheets("Sheet1").PageSetup.RightMargin / _
Application.InchesToPoints(1)
MsgBox "The current right margin is " & marginInches & " inches"
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。