TextFrame2 对象 (Excel)
表示 Shape、 ShapeRange 或 ChartFormat 对象中的文本框。
备注
此对象包含文本框中的文本,还包含控制文本框的对齐方式和定位的属性和方法。 使用 TextFrame2 属性可返回 TextFrame2 对象。
示例
下例向 myDocument 中添加一个矩形,向矩形中添加文本,然后设置文本框的边距。
Set myDocument = Worksheets(1)
With myDocument.Shapes.AddShape(msoShapeRectangle, _
0, 0, 250, 140).TextFrame2
.TextRange.Text = "Here is some test text"
.MarginBottom = 10
.MarginLeft = 10
.MarginRight = 10
.MarginTop = 10
End With
方法
属性
- Application
- AutoSize
- 列
- Creator
- HasText
- HorizontalAnchor
- MarginBottom
- MarginLeft
- MarginRight
- MarginTop
- NoTextRotation
- Orientation
- Parent
- PathFormat
- Ruler
- TextRange
- ThreeD
- VerticalAnchor
- WarpFormat
- WordArtformat
- WordWrap
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。