PowerPoint) (TextFrame.WordWrap 屬性
會決定是否會自動換行以符合圖案大小。 讀取/寫入。
語法
運算式。WordWrap
表達 代表 TextFrame 物件的變數。
傳回值
MsoTriState
註解
WordWrap 屬性的值可以是下列其中一個 MsoTriState 常數。
常數 | 描述 |
---|---|
msoFalse | 線條不會自動中斷以容納在圖形內。 |
msoTrue | 會自動分行以符合圖案大小。 |
範例
這個範例會將包含文字的矩形加入 myDocument,然後關閉新矩形中的自動換行功能。
Set myDocument = ActivePresentation.Slides(1)
With myDocument.Shapes.AddShape(msoShapeRectangle, _
0, 0, 100, 300).TextFrame
.TextRange.Text = _
"Here is some test text that is too long for this box"
.WordWrap = False
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。