PowerPoint) (TextFrame.MarginRight 属性
返回或设置文本框架的右边缘与包含文本的形状的刻字矩形的右边缘之间的距离 () 磅 。 读/写。
语法
表达式。MarginRight
表达 一个代表 TextFrame 对象的变量。
返回值
单精度
示例
本示例在 myDocument 中添加一个矩形,向矩形中添加文本,然后设置文本框架的边距。
Set myDocument = ActivePresentation.Slides(1)
With myDocument.Shapes.AddShape(msoShapeRectangle, _
0, 0, 250, 140).TextFrame
.TextRange.Text = "Here is some test text"
.MarginBottom = 0
.MarginLeft = 10
.MarginRight = 5
.MarginTop = 20
End With
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。