Hello,
If you cannot find the functionality you want within our VBOs you may need to create your own extension object with additional code stage logic to do what you want (we try our best but cannot cover every use case!)
I needed to do something similar in Excel recently, where I needed to insert an image from a file. My code stage contained the following:
Dim MySht as Object = GetInstance(Handle).ActiveSheet
Dim MyPic as Object = MySht.Shapes.AddPicture(Image_Path, False, True, 0, 0, -1, -1)
So maybe something similar can be done with the MS Word VBO - experiment and see. There is a guide in the Product area of the portal about creating code stages if you have not done it before. Most of the 'how to' answers are in the internet.