在书签位置插入图片、公文域中插入图片、指定位置插入图片、光标处插入图片
解决方案光标处插入图片 //光标处插入图片
var app=wps.Application;
app.ActiveDocument.Bookmarks.Item("书签名").Select()
var selection=app.ActiveWindow.Selection;//光标对象
var picture=selection.InlineShapes.AddPicture("图片url",true,true)
var shape=picture.ConvertToShape();//转换为Shape对象
shape.RelativeVerticalPosition=1 //垂直相对位置
shape.RelativeHorizontalPosition=1 //水平相对位置
shape.Top=selection.Information(6)//指定图片位置为光标位置
shape.Left=selection.Information(5)//指定图片位置为光标位置
书签或公文域中插入图片
//书签或者公文域中插入图片
var app=wps.Application;
app.ActiveDocument.Bookmarks.Item("书签名").Select()
//var range=app.ActiveDocument.Bookmarks.Item("书签名").Range;//书签对象Range
var range=app.ActiveDocument.DocumentFields.Item("公文域名称").Range;//公文域Range
var picture=range.InlineShapes.AddPicture("图片url",true,true)
var shape=picture.ConvertToShape();//转换为Shape对象