我在我的宏中生成 TextBox。我想将其位置设置为square
或through
不在文本后面。那可能吗?
问问题
914 次
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 回答