I want to convert the entire content of that page to PDF by searching for a specific word on each page (which may be on one page or more). For example, we have a file that has three pages, there is a special word on the first page, and the next special word on the third page. I want to save the PDF from the first to the second page and then save the third page separately. The PDF files will be named according to the specific word on that page.
My problem is that I don't know how to loop for each page and read the content of that page to get to the special word and save the pages as a PDF. Thank You
Here is how you can do it.
DocumentModel.GetPaginator
method.FrameworkElement.ToText
extension method.DocumentModelPage.Save
method.In other words, try the following: