I want to extract XML of a node and want to construct node from that XML at another document. Like
And want to get XML of a Paragraph node.
<w:p w:rsidR="00C07F31" w:rsidRDefault="003F6D7A">
<w:r w:rsidRPr="003F6D7A">
<w:rPr>
<w:b />
</w:rPr>
<w:t>Hello</w:t>
</w:r>
<w:r>
<w:t xml:space="preserve">World.</w:t>
</w:r>
</w:p>
then want to create Paragraph node from that XML at another document.
N.B. Paragraph may contain images or shapes and equations. So I have to save and reconstruct those also.
Is it possible using Aspose.Word library?