0

我在我的宏中生成 TextBox。我想将其位置设置为squarethrough不在文本后面。那可能吗?

4

1 回答 1

2

考虑到您的其他问题的继续,您可以textbox position通过以下方式之一进行设置:

Dim Box As Shape
Set Box = ActiveDocument.Shapes.AddTextbox( _
    Orientation:=msoTextOrientationHorizontal, _
    Left:=50, Top:=50, Width:=100, Height:=100)

Box.WrapFormat.Type = wdWrapThrough
Box.WrapFormat.Type = wdWrapSquare
于 2013-06-15T21:33:38.813 回答