Click here to Skip to main content
16,018,417 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to add drawing canvas on second page of word document using c#.
Right now i add the canvas only to first page not to another pages.


using Microsoft.Office.Interop.Word;

Shape shpCanvas2 = oDoc.Shapes.AddCanvas(10, 10, 200, 400, ref oMissing);

Please suggest...
Posted

1 solution

Navigate through word pages by using C#[^]

This link will help you find the 2 nd page content. So when you are in the second page add your canvas coed and you are all set.

Good luck.
 
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