This question is locked. New answers and comments are not allowed.
I am trying to build a RadDocument from multiple RTF strings. Tables are imported correctly except the borders are lost. The borders displayed correctly when viewed in MS Word. Is there a better way to do this?
foreach (string rtfTextString in myListOfStrings) { RtfFormatProvider provider = new RtfFormatProvider(); RadDocument subDoc = provider.Import(rtfTextString); foreach (Section s in subDoc.Sections) { var copy = s.CreateDeepCopy() as Section; if (copy != null) { richTextBox.Document.Sections.Add(copy); } } }