When I copy the footer from a Word template to another Word document the font style and size changes in the middle paragraph of footer what consists more than one Run. How can I copy the style of it (font style, size, etc.)? Can anyone help?
FooterPart srcFP = srcMDP.GetPartById(footerRef.Id) as FooterPart;
FooterPart newFooter = destMDP.AddNewPart<FooterPart>();
newFooter.FeedData(srcFP .GetStream());
destFR.Id = destMDP.GetIdOfPart(newFooter);