Click here to Skip to main content
15,887,267 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am trying to insert an image after some specific line in word document in C#.
How to do it?

What I have tried:

I tried inserting Bookmark to that line but selection comes to the 2 pages before that line in document.
Also the number of pages in document is not fixed.

When I insert image to the bookmarked line image inserts 2 pages before and disturbing all layout of the document.
Posted
Updated 16-Aug-18 4:51am
v2

1 solution

Using "brute force":

"Manually" create a document with the desired results.

Replace the "link", image or whatever you wind up with a "place holder"; e.g.

@@REPLACE ME@@

Now use that for a "search and replace" on the document "template" to insert whatever you want (that is compatible with whatever was "replaced").

In this case, you process the doc as "raw data"; no "automation", etc.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900