Word) (WrapFormat 物件
代表將文字環繞圖案或圖案範圍的所有屬性。
使用 WrapFormat 屬性可傳回 WrapFormat 物件。 下列範例會將橢圓形新增至使用中文件與指定文件文字正方形外切該橢圓的左邊和右邊周圍自動換行。 將文件文字上方、 下方、 左側和右邊正方形之間 0.1 英吋的邊界。
Set myOval = _
ActiveDocument.Shapes.AddShape(msoShapeOval, 36, 36, 100, 35)
With myOval.WrapFormat
.Type = wdWrapSquare
.Side = wdWrapBoth
.DistanceTop = InchesToPoints(0.1)
.DistanceBottom = InchesToPoints(0.1)
.DistanceLeft = InchesToPoints(0.1)
.DistanceRight = InchesToPoints(0.1)
End With
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。