我在 Word 文档中有一个形状,需要将其移动到书签位置。
我尝试使用“left”和“top”属性,但是,这不起作用,因为据我所知,书签没有“left”和“right”属性。
我曾尝试使用剪切和粘贴,但这不适用于形状。
以下是创建形状的代码:
Set shp = ActiveDocument.Content.InlineShapes.AddOLEControl("Forms.CommandButton.1")
With ActiveDocument.InlineShapes(1).OLEFormat.Object
.Caption = "Test"
.Height = 30
.Width = 44
End With
With ActiveDocument.InlineShapes(1).ConvertToShape
.Name = "Test1"
.ZOrder (msoBringInFrontOfText)
End With