PowerPoint) (TextFrame.MarginTop 屬性
會傳回或設定文字圖文框頂端與包含文字之圖形之內含矩形頂端之間的 (點) 距離。 讀取/寫入。
語法
運算式。MarginTop
表達 代表 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 = 0
.MarginTop = 20
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。