Completed
Last Updated: 21 Mar 2024 05:53 by ADMIN
Release 2024.1.305 (2024 Q1)

Handle import of documents with self-referring styles.

As a workaround, you can go through the RTF document structure of a single file and utilize Regex to resolve the self-referring styles like this:

string rtf = File.ReadAllText("inputFile.rtf");
rtf = FixSelfReferringStyles(rtf);

Telerik.Windows.Documents.Flow.FormatProviders.Rtf.RtfFormatProvider provider = new Telerik.Windows.Documents.Flow.FormatProviders.Rtf.RtfFormatProvider(); 

 var document = provider.Import(rtf);

...

private static string FixSelfReferringStyles(string rtf)
{
    string regexString = @"{\\s([0-9]+)[^}]*\\slink([0-9]+)";

    var matches = Regex.Matches(rtf, regexString);
    foreach (Match match in matches)
    {
        if (match.Groups[1].Value == match.Groups[2].Value)
        {
            var oldValue = match.Groups[0].Value;
            var newValue = oldValue.Replace(@" \slink" + match.Groups[1].Value, string.Empty);
            rtf = rtf.Replace(oldValue, newValue);
        }
    }

    return rtf;
}

 

Completed
Last Updated: 14 Mar 2024 09:00 by ADMIN
Release 2024.1.305 (2024 Q1)

Some fonts don't include bold and italic font styles. These fonts can be exported with the default typeface, and additional transformation could be applied to the letters itself - e.g. skew transform for the italic.

Note: Make sure that this will also work when exporting to PDF in WordsProcessing.
Completed
Last Updated: 14 Mar 2024 08:59 by ADMIN
Release 2024.1.305 (2024 Q1)
ADMIN
Created by: Deyan
Comments: 2
Category: ZipLibrary
Type: Feature Request
15

Add support for the creation of AES-encrypted archives.

There is a related feature request for the extraction of such archives: ZipLibrary: Add support for extraction of AES-encrypted archives.

Completed
Last Updated: 24 Jan 2024 12:54 by ADMIN
Release 2024 Q1
Created by: Joe
Comments: 2
Category: PdfProcessing
Type: Feature Request
6

ZUGFeRD (acronym for Zentraler User Guide des Forums elektronische Rechnung Deutschland) is a specification for the electronic invoice format of the same name.

The feature depends on the following features:

Completed
Last Updated: 24 Jan 2024 09:18 by ADMIN
Release 2024 Q1

Add support for extraction of AES-encrypted archives.

There is a related feature request for the creation of such archives: ZipLibrary: Add support for creation of AES-encrypted archives.

Completed
Last Updated: 19 Jan 2024 14:41 by ADMIN
Release 2024 Q1
ADMIN
Created by: Deyan
Comments: 35
Category: PdfProcessing
Type: Feature Request
49
They are exported with the /EmbeddedFiles switch. This would allow adding external files to the PDF document.
Completed
Last Updated: 11 Jan 2024 08:23 by ADMIN
Release 2024 Q1
Created by: laura
Comments: 0
Category: PdfProcessing
Type: Feature Request
1
Expose the IsBold property of FontBase.
Completed
Last Updated: 12 Sep 2023 07:23 by ADMIN
Release R3 2023
When importing and merging documents the fonts are extracted directly from the files and can duplicate if the files contain exactly the same fonts/subsets.
Completed
Last Updated: 08 Sep 2023 12:44 by ADMIN
Release R3 2023
Created by: Fabien
Comments: 1
Category: WordsProcessing
Type: Feature Request
1
Introduce support for importing documents with nested runs.
Completed
Last Updated: 08 Sep 2023 12:43 by ADMIN
Release R3 2023
Introduce support for importing documents with fields inside of runs.
Completed
Last Updated: 08 Sep 2023 10:10 by ADMIN
Release R3 2023
Handle HTML import of base64 images with no data source.
Completed
Last Updated: 07 Sep 2023 12:53 by ADMIN
Release LIB 2023.2.918 (18 Sep 2023)
Created by: Fabian
Comments: 0
Category: WordsProcessing
Type: Feature Request
1
Add support for BIN images
Completed
Last Updated: 23 Aug 2023 10:01 by ADMIN
ADMIN
Created by: Deyan
Comments: 23
Category: WordsProcessing
Type: Feature Request
62
Add support for shapes, and especially for shapes with textual content. 
In OOXML, shapes are represented by the wps:wsp element, and shapes with textual content by <wps:txbx>, <w:txbxContent>.
Such shape can be added to a Word document using the Insert -> Text -> Text Box -> Draw Text Box, or through a shape's context menu -> Add Text.

Do not confuse these shapes with Text/Rich Text content controls (see https://feedback.telerik.com/Project/184/Feedback/Details/190057 )
Completed
Last Updated: 06 Jul 2023 08:12 by ADMIN
Release R3 2021
Created by: Gil
Comments: 3
Category: SpreadStreamProcessing
Type: Feature Request
0
Some of the required properties are Orientation and Page size.
Completed
Last Updated: 05 Jul 2023 10:50 by ADMIN
Release R2 2023 SP1
With the current implementation, the optional Filter property is omitted on export.
Completed
Last Updated: 05 Jul 2023 09:00 by ADMIN
Release R2 2023
Created by: Marcos Mataloni
Comments: 17
Category: SpreadProcessing
Type: Feature Request
19

Hello,

we would like to have the capability to create a chart in excel export using Telerik.Documents.Spreadsheet 

Marcos

Completed
Last Updated: 12 Jun 2023 13:49 by Magnum P.I.
Release R3 2022
ADMIN
Created by: Deyan
Comments: 19
Category: SpreadProcessing
Type: Feature Request
48
If a worksheet spans more than one page, you can print row and column headings or labels (also called print titles) on every page to ensure that the data is properly labeled.
Completed
Last Updated: 18 May 2023 07:25 by ADMIN
Release R2 2023
The PdfFormatProvider currently supports such an option (check the ImageCompression setting).
Completed
Last Updated: 18 May 2023 07:19 by ADMIN
Release R2 2023
Mail merge does not work if the template contains a Table Of Contents
Completed
Last Updated: 17 May 2023 10:55 by ADMIN
Release R2 2023
Provide support for setting color values using rgb() function.

Example: background-color: rgb(197,93,161);
1 2 3 4 5 6