Unplanned
Last Updated: 15 Sep 2020 08:16 by ADMIN
Dimitar
Created on: 15 Sep 2020 08:16
Category: RichTextBox
Type: Bug Report
1
RichTextBox: The DeepCopy method does not copy the font of the predefined table styles

The DeepCopy method does not copy the font of the predefined table styles

 

Workaround:

var fragment = new DocumentFragment(radRichTextBox.Document);
radRichTextBox.Document = new RadDocument();
DefaultStyleSheet.Instance.ApplyStylesheetToDocument(radRichTextBox.Document);
radRichTextBox.InsertFragment(fragment);

0 comments