Unplanned
Last Updated: 04 Dec 2020 09:21 by ADMIN
ADMIN
Created by: Deyan
Comments: 4
Category: WordsProcessing
Type: Feature Request
18
Support for table styles with different properties for first/last row and column, row bandings.
Unplanned
Last Updated: 13 Aug 2024 11:33 by Kamil
ADMIN
Created by: Tanya
Comments: 5
Category: WordsProcessing
Type: Feature Request
17
Add support for horizontal lines in documents.

In DOCX, such lines are defined using the legacy VML definitions:
<w:pict w14:anchorId="324D5836">
  <v:rect id="_x0000_i1025" style="width:0;height:1.5pt" o:hralign="center" o:hrstd="t" o:hr="t" fillcolor="#a0a0a0" stroked="f"/>
</w:pict>
The definitions above and the <hr/> HTML tag are currently not supported and skipped on import, leading to missing horizontal lines in the document.
Unplanned
Last Updated: 03 Oct 2022 07:20 by ADMIN
ADMIN
Created by: Deyan
Comments: 5
Category: WordsProcessing
Type: Feature Request
16
Add support for import and export of floating tables.
Unplanned
Last Updated: 18 Aug 2017 09:10 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: WordsProcessing
Type: Feature Request
15
There should be an option allowing users to embed fonts in their documents.

Seems to be applicable for DOCX and RTF, MS Word has such option in File -> Options -> Save.
Unplanned
Last Updated: 22 Jun 2018 12:28 by ADMIN
The Indent property of Table is not respected by PdfFormatProvider.
Unplanned
Last Updated: 22 Dec 2023 14:46 by ADMIN
ADMIN
Created by: Tanya
Comments: 2
Category: WordsProcessing
Type: Feature Request
14
Add support for the All Caps and Small Caps properties of the runs. These properties are currently ommitted on import.
Unplanned
Last Updated: 06 Mar 2019 13:39 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: WordsProcessing
Type: Feature Request
14
Add support for INCLUDEPICTURE fields. Such fields should work with nested MERGEFIELD, as this is common scenario.

Workaround: Manually insert images over specific placeholder
RadFlowDocument document = new RadFlowDocument();
RadFlowDocumentEditor editor = new RadFlowDocumentEditor(document);
  
editor.InsertText("1");
editor.InsertText("EXAMPLE_IMAGE");
editor.InsertText("2");
  
foreach (var run in editor.Document.EnumerateChildrenOfType<Run>().ToArray())
{
    if(run.Text == "EXAMPLE_IMAGE")
    {
        Paragraph paragraph = run.Paragraph;
        int indexOfCurrentRun = paragraph.Inlines.IndexOf(run);
        paragraph.Inlines.RemoveAt(indexOfCurrentRun);
  
        ImageInline imageInline = new ImageInline(document);
        imageInline.Image.ImageSource = newTelerik.Windows.Documents.Media.ImageSource(imageData, "png");
        paragraph.Inlines.Insert(indexOfCurrentRun, imageInline);
    }
}
Unplanned
Last Updated: 07 Mar 2024 12:49 by ADMIN
ADMIN
Created by: Deyan
Comments: 2
Category: WordsProcessing
Type: Feature Request
14

			
Unplanned
Last Updated: 23 Aug 2023 08:25 by ADMIN
ADMIN
Created by: Vladislav
Comments: 0
Category: WordsProcessing
Type: Feature Request
13
Add support for TextBox shapes.
Unplanned
Last Updated: 15 Apr 2021 06:20 by ADMIN
ADMIN
Created by: Mihail
Comments: 2
Category: WordsProcessing
Type: Feature Request
13

Text frames are paragraphs of text in a document which are positioned in a separate region or frame in the document and can be positioned with a specific size and position relative to non-frame paragraphs in the current document. More information about it is available in section 22.9.2.18 ST_XAlign (Horizontal Alignment Location) of Open Office XML.

Completed
Last Updated: 20 Jan 2022 08:19 by ADMIN
Release R1 2022
The vertical alignment of the table cells is not exported to PDF. The values are always exported with top alignment.
Completed
Last Updated: 18 Apr 2022 13:47 by ADMIN
Release R2 2022
When this type of section break is used, the next section should start on the same page instead on the next one.
Unplanned
Last Updated: 27 Sep 2019 19:11 by ADMIN
The property controls whether a paragraph should be rendered at least partially on the same page with the following paragraph when the document is shown in page view mode.
Unplanned
Last Updated: 29 Oct 2018 09:36 by ADMIN

When exporting hyperlink pointing to a bookmark, the resultant PDF document should contain Link annotation with destination pointing the bookmark's destination.

One important scenario to cover is the ability to import HTML with hyperlinks to anchors in the documents, and export them as working hyperlinks in the PDF document.
Completed
Last Updated: 11 May 2023 13:31 by ADMIN
Release R2 2023
ADMIN
Created by: Deyan
Comments: 5
Category: WordsProcessing
Type: Feature Request
12

Currently some properties are supported only in their shorthand forms, and others - only in their longhand forms: - 'background' shorthand is not supported. - 'margin' shorthand is not supported.

- 'padding' shorthand is not supported. - 'border' shorthand is supported, but 'border-bottom-color', 'border-bottom-style', 'border-bottom-width', 'border-left-color', 'border-left-style', 'border-left-width', 'border-right-color', 'border-right-style', 'border-right-width', 'border-style', 'border-top-color', 'border-top-style', 'border-top-width', 'border-width' are not supported.

IMPORTANT: This feature is available in .NET Core, .NET 6 and above.

Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
Currently, the text is exported but the strikethrough line is not drawn in the exported PDF.
Unplanned
Last Updated: 19 Mar 2024 12:12 by ADMIN
ADMIN
Created by: Tanya
Comments: 2
Category: WordsProcessing
Type: Feature Request
11

There are 27 types of border styles in the Open XML specification and they are implemented in RadFlowDocument. Only borders None and Single are supported when exporting to PDF, all others are treated as None and stripped.

Updates:

Please subscribe to the tasks, so we can notify you when their status changes.

Unplanned
Last Updated: 23 Aug 2023 08:19 by ADMIN
ADMIN
Created by: Vladislav
Comments: 0
Category: WordsProcessing
Type: Feature Request
10
Add support for exporting shapes to PDF.
Unplanned
Last Updated: 12 Aug 2019 12:09 by ADMIN
Created by: Naveen
Comments: 0
Category: WordsProcessing
Type: Feature Request
10
Provide support for Track Changes.
Unplanned
Last Updated: 23 Jan 2019 09:45 by ADMIN
Enable customers to create and modify chart objects. The shapes featurŠµ must be implemented before implementing this functionality.