PowerPoint) (TextRange2 物件
代表文字圖文框中 Shape 或 ShapeRange 物件。
註解
此物件包含文字圖文框以及屬性和方法,以控制的對齊方式或錨定文字圖文框中的文字。 使用 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
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。