I have two consecutive paragraphs, the second has some text formatted italics. I add the text of the second paragraph to the first by setting the range of the first paragraph then using this code:
Paragraph nextPar = firstPar.Next();
Range nextRange = nextPar.Range;
firstRng.InsertAfter(nextRange.Text.ToString());
This works well but it removes the italic from the text of the second paragraph. I want a way to keep formatting.