Hi,
I am using Open XML SDK in my C#.NET project and here is what I want to do. First, I need to find a line where is for example written this: "REMOVE THE PAGES BEHIND". When I find that page I need to literally delete pages behind that line. Here is the example:
-----------
Page 1
...content....
-----------
Page 2
...content....
----------
Page 3
REMOVE THE PAGES BEHIND
...content....
---------
Page 4
---------
So, I need to delete first two pages and leave the rest. I found article which explains how to delete the file, but is there some way to find that line?
Thank you in advance.