Hello,
I have a document which has few bookmarks and one of the bookmark is Signature(Image). I loop thru all the bookmarks and replace all the text on bookmark and would like to update the Signature bookmark with an Image. How can I do this with Aspose?
Actually I am trying to convert code which was originally using MSWord interop and replacing same with Aspose.Words. We have working code as below with MSWord.
For each lBookmark in doc.Formfields
Dim wdRange as Word.Range
Clipboard.SetImage(lObjSystemDrawingImage)
wdRange = lBookmark.Range
wdRange.Paste.
Next.
I tried to replace same code with Aspose but did not find wdRange.Paste method. Is there any work around to insert image inside of FormField?
Thanks,
Vinay Hattarki