I have been trying an image have an absolute position in Microsoft word using the following vb.net code:
logoimg = Doc.Content.Paragraphs.Add
logoimg.Range.Paragraphs.Alignment = WdParagraphAlignment.wdAlignParagraphJustifyHi
logoimg.Range.InlineShapes.AddPicture(Environment.CurrentDirectory & "\Common\logo.jpg")
can any one tell me what should be the next line(s) of code to make this image's position absolute?
How can I set the absolute position of an image with top and left set to 0
Is my code correct ?
Any help would be very appreciated!