Unplanned
Last Updated: 11 Mar 2022 10:00 by Devan
The property controls whether all the lines of a paragraph should be rendered on the same page when the document is shown in page view mode.
Completed
Last Updated: 31 Oct 2023 14:53 by ADMIN
Release R3 2023 SP1

Exception when converting table with empty runs in the cells.

 

 

Completed
Last Updated: 26 Apr 2022 11:16 by ADMIN
Release R2 2022
This attribute specifies the alternative text for the current DrawingML object, for use by assistive
technologies or applications which do not display the current object. Currently it is omitted while importing the content with DocxFormatProvider
Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)

The hanging indent of the paragraph affects the rendering of content with tabs. However, the indent is not respected while generating the PDF, leading to disordered content.

Workaround: Insert a tab stop with the position set to the value for hanging indent:

foreach (var paragraph in this.flowDocument.EnumerateChildrenOfType<Paragraph>())
{
    if (paragraph.Properties.HangingIndent.HasLocalValue)
    {
        Run run = paragraph.EnumerateChildrenOfType<Run>().Where(r => r.Text == "\t").FirstOrDefault();

        if (run != null)
        {
            paragraph.TabStops = paragraph.TabStops.Insert(new Telerik.Windows.Documents.Flow.Model.Styles.TabStop(paragraph.Properties.HangingIndent.LocalValue.Value));
        }

    }
}

Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
When a numbered list marker's font is exported to PDF, the resulting PDF file's list marker is not the proper font. The font of the text in the list entries themselves is correct.
Unplanned
Last Updated: 01 Jun 2022 07:27 by chrbra
The LockAspectRatio property of the ImageInline does not work after export to Docx
Unplanned
Last Updated: 14 Jun 2022 10:02 by Miroslav

If a document has runs with font size larger than the one set in the style of the paragraphs and this document is exported to HTML, the resulting paragraphs overlap.

image

Unplanned
Last Updated: 18 Jul 2022 06:02 by Xiao
WordsProcessing: RtfFormatProvider: Does not export "cellx" correctly when table LayoutType is FixedWidth.
Unplanned
Last Updated: 25 May 2023 13:28 by ADMIN
Created by: Nikolay
Comments: 2
Category: WordsProcessing
Type: Feature Request
2
Allow insertion of Equations and Formulas. The feature can have merge fields inside the equations.
Unplanned
Last Updated: 21 Nov 2022 14:01 by Floris
Created by: Floris
Comments: 0
Category: WordsProcessing
Type: Feature Request
2
Converting from Docx to Pdf images rotation doesn't stay the same.
Completed
Last Updated: 13 Feb 2023 13:49 by ADMIN
Release R1 2023 SP1
InvalidOperationException (Sequence contains no elements) when updating TOC field in a document
Completed
Last Updated: 27 Feb 2023 10:40 by ADMIN
Release R1 2023 SP1
Unplanned
Last Updated: 06 Mar 2023 09:12 by Margret
DocFormatpRovider: StackOverflowException when importing doc documents with particular paragraph properties.
Completed
Last Updated: 05 Jul 2023 08:14 by ADMIN
Release R2 2023 SP1
PdfFormatProvider: NullReferenceException when exporting bookmarks spanning more than one paragraph.
Declined
Last Updated: 29 May 2023 10:51 by ADMIN
The Footer's size is sometimes not respected.
Unplanned
Last Updated: 05 Jul 2023 13:12 by Fubin
Table columns are not the expected width after export while having large cropped images as content and all table content is resized. The input document's images are not resized and are too big to fit on the table and thus are cropped. 
Unplanned
Last Updated: 23 Aug 2023 08:23 by ADMIN
ADMIN
Created by: Vladislav
Comments: 0
Category: WordsProcessing
Type: Feature Request
2
Expose a way to add new shapes to the document, modify them, or delete them.
Unplanned
Last Updated: 15 Sep 2023 09:44 by Petar
InvalidOperationException caused by some PageNumberType formats.
Unplanned
Last Updated: 21 Sep 2023 10:48 by ADMIN
Bolding of some content on Import/Export. 
Unplanned
Last Updated: 17 Oct 2023 13:54 by Petar
Cannot import a document containing style with no name.