Hi
Charulatha,
Thank
you for your update.
As mentioned in our previous update
Word document is a flow document. The rendering mechanism of the contents will
be determined by the vendor of the viewer (MS Word, Open office, etc.,). So it
is not possible to read a line from word document or to split page by page
because it is not a static one. Kindly use the solution provided in our
previous update to split the word document page by page by defining new
sections for all the pages of the input template document.
Kindly
use the below code to read the footer contents of the document.
HeaderFooter footer = newDocument.LastSection.HeadersFooters.Footer;
foreach (IEntity entity in footer.ChildEntities)
{
if(entity is WParagraph)
string
text = (entity as WParagraph).Text;
}
Kindly
refer the below UG documentation link to get more information on Headers and
Footers:
http://help.syncfusion.com/ug/windows%20forms/default.htm#!documents/headersandfooters.htm
Please let us know if you have any
other questions.
Regards,
Sathish