Unplanned
Last Updated: 27 Nov 2024 14:34 by Robert

(DIPs) is a unit type used in RadWordsProcessing when setting the FontSize of a Run. If you load a document with font size in WordPad set to 20 points and load it to RadFlowDocument, its value is converted by using the following method. If the RTF content stored from WordPad is saved to HTML format with WordPad, the font size is preserved with the same unit: style='font-size:20.0pt;'. We should add the option to control the font size unit when exporting to HTML format.

Completed
Last Updated: 13 Nov 2024 09:22 by ADMIN
Release 2024.2.426 (2024 Q2)
The list indentation is wrong when exporting several levels to PDF
Completed
Last Updated: 13 Nov 2024 08:50 by ADMIN
Release 2024.4.1106 (Q4 2024)
ArgumentException is thrown during MailMerge with a document with inline shape in its header/footer.
Completed
Last Updated: 13 Nov 2024 08:49 by ADMIN
Release 2024.4.1106 (Q4 2024)
IndexOutOfRangeException is thrown when importing a specific document.
Completed
Last Updated: 13 Nov 2024 08:03 by ADMIN
Release 2024.4.1106 (Q4 2024)

At this point, the justify alignment is not supported. Provide the ability to export text with this setting.

This functionality is dependent on PdfProcessing: Provide API for setting the text alignment to Justify

Completed
Last Updated: 13 Nov 2024 08:03 by ADMIN
Release 2024.4.1106 (Q4 2024)
When exporting a document containing a table with no cells an exception is thrown: System.InvalidOperationException: 'Sequence contains no elements'
Completed
Last Updated: 13 Nov 2024 08:02 by ADMIN
Release 2024.4.1106 (Q4 2024)
ADMIN
Created by: Peshito
Comments: 0
Category: WordsProcessing
Type: Bug Report
0
Exporting documents to with headings to RTF does not properly export some heading colors in the document.
Unplanned
Last Updated: 12 Nov 2024 08:51 by IT
Created by: IT
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
Add support for diagrams.
Unplanned
Last Updated: 07 Nov 2024 11:53 by ADMIN
When measuring nested tables and the levels are more than 5 level, the export is very slow.
Unplanned
Last Updated: 06 Nov 2024 07:41 by Mohammad
PdfFormatProvider: The rightmost content of an HTML table is slightly cropped after PDF export.
Unplanned
Last Updated: 30 Oct 2024 15:45 by ADMIN
ADMIN
Created by: Deyan
Comments: 2
Category: WordsProcessing
Type: Feature Request
8
Implement page border property which could be applied over the whole document or over a specific page.
Unplanned
Last Updated: 18 Oct 2024 14:45 by Jose
ArgumentNullException when exporting a specific document with SVG image to PDF.
Unplanned
Last Updated: 08 Oct 2024 12:13 by Andre' Hazelwood

 Replace cannot match whole word with special characters (e.g. "#", "@", "&") at the start/end.

Workaround (RegEx):

editor.ReplaceText(new Regex($"(?<=\\s|^|[\\c_]){placeholder}(?=\\s|$|[\\c_])"),"new content");

 

Unplanned
Last Updated: 07 Oct 2024 09:59 by John
Created by: John
Comments: 0
Category: WordsProcessing
Type: Feature Request
0

Add support for Picture Styles.

Unplanned
Last Updated: 23 Sep 2024 08:49 by ADMIN
Created by: Hannah
Comments: 2
Category: WordsProcessing
Type: Feature Request
4

The mail merge should support conditional fields. Here is an example:

{ IF [Condition] [Display Result 1] [Display Result 2] }

Unplanned
Last Updated: 18 Sep 2024 11:57 by ADMIN

InvalidOperationException when cloning a document containing fields spanning multiple paragraphs.

Workaround: instead of new paragraphs, use line breaks (Shift+Enter).

Unplanned
Last Updated: 03 Sep 2024 14:10 by ADMIN
'Value cannot be null. Parameter name: relationshipId' exception is thrown when an image does not have a relationship id specified. MS Word is showing the image as invalid but renders the document.
Unplanned
Last Updated: 02 Sep 2024 09:02 by Sergei
Outline level is not respected when creating TOC with custom styles.
Unplanned
Last Updated: 26 Aug 2024 11:51 by Patrick

The default vertical alignment value of table data (<td>) is incorrect.

Current: "vertical-align: top;"

Expected: "vertical-align: middle;"

Workaround: Explicitly set the "vertical-align: middle;" of <td> elements.