Showing related tags and posts across the entire site.
-
Working on a SL 3 app which allows users to build advertisements (typically destined for print media) consisting of images and rich text built in a WYSIWYG editor on screen. The text is entered using the C1RichTextBox. Once users finish their ad on screen, we produce a print-ready PDF of the ad. It is...
-
Hi, I am currently using the C1RichtTextBox v.3.0.20093.69. When I try to copy-paste a block of text from Notepad (for example) to the RichTextBox only the first line of text is pasted. This only occurs when I set the ClipboardMode of the RichTextBox to PlainText. However I don't want to use the...
-
This seems to be a bug: if you use FontFamily Georgia or Trebuchet MS in C1RichTextBox, then the cursorposition does not match the tabpositions. In other words: if your text contains tabs, then the position where you type is not where you see the cursor. More common fonts like Arial and Verdana seem...
-
Hello, I would like to provide a rich text box for users to read and write data to a database. I am using the basic setup below: Page.cs: private void SetRichTextBox() { Customer selectedCustomer = listCustomers.SelectedItem as Customer; RtfFilter filter = new RtfFilter(); richTextBox.Document = filter...