BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi
Charulatha,
Thank
you for your interest in Syncfusion products.
Word
document is a flow document and the flow changes based on the contents
available in the document. So we can’t divided the contents page by page. As a
work around kindly insert new sections breaks for each every pages available in
the template document. Thereby we can clone each and every sections and save
them as separate word documents. We have prepared a sample to illustrate the
same. Please find the attached sample and let us know if this helps you.
Please
let us know if you have any other questions.
Regards,
Sathish
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