|
楼主 |
发表于 2016-1-23 18:42
|
显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
MarginLeft属性
以磅为单位返回或设置从文本框左边界到包含文本的形状中内接矩形左边界的距离。可读写。Single 类型。
VBA示例
本示例在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 = 0
.MarginTop = 20
End With
MarginRight属性
以磅为单位返回或设置从文本框右边界到包含文本的形状中内接矩形右边界的距离。可读写。Single 类型。
VBA示例
本示例在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
MarginTop属性
以磅为单位返回或设置从文本框架顶端到包含文本的形状中内接矩形顶端的距离。可读写。Single 类型。
VBA示例
本示例在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 = 0
.MarginTop = 20
End With
|
|