In Development
Last Updated: 03 Jul 2026 08:16 by ADMIN
Handle the case where the document has edit, copy password but no open password. We should either suppress the UserPasswordNeeded event or provide information about the password options in the arguments. 
In Development
Last Updated: 02 Jul 2026 16:54 by ADMIN
By specification, the FontDescriptor is required except for Standard fonts. However, if some font has only a declaration of FontDescriptor but with a missing definition, the document is not exported successfully.
In Development
Last Updated: 02 Jul 2026 16:19 by ADMIN
Update the "fx:Version" metadata mapping for the XRechnung conformance level.
In Development
Last Updated: 02 Jul 2026 15:37 by ADMIN
ADMIN
Created by: Boby
Comments: 1
Category: PdfProcessing
Type: Feature Request
1
The method should create deep copy of  the current page.
Unplanned
Last Updated: 02 Jul 2026 14:22 by Jérémie

InvalidOperationException is thrown when exporting a PDF document with a set compliance that processes Type3 font glyphs.

Workaround: Before export, set compliance to None.

var provider = new PdfFormatProvider();
provider.ExportSettings.ComplianceLevel = PdfComplianceLevel.None;

 

In Development
Last Updated: 02 Jul 2026 08:21 by ADMIN
ADMIN
Created by: Deyan
Comments: 2
Category: SpreadProcessing
Type: Feature Request
23
Add support for array formulas (CellFormulaType "array"). These formulas can accept as parameters and return results containing whole arrays (one- or two- dimensional) of data. In MS Excel, such formulas are inserted with CTRL + SHIFT + Enter, and visualized enclosed with curly brackets ('{' and '}'). 
Completed
Last Updated: 02 Jul 2026 07:33 by ADMIN
Release Scheduled For = 2026.2.624 (2026 Q2)
Unable to obtain the value of incrementally updated fields. The original value of the fields is resolved instead.
In Development
Last Updated: 01 Jul 2026 19:57 by ADMIN
MethodAccessException is thrown when exporting documents using .NET Standard references in a .NET Framework environment.
In Development
Last Updated: 01 Jul 2026 07:47 by ADMIN

The stack shows 1070 repeated frames of:

  • StructElementObject.ProcessChildPrimitive(...)
  • StructElementObject.CopyPropertiesTo(...)


The StructureTree import is traversing a cyclic StructElement graph (or equivalent re-entrant child chain) without a recursion guard.

During this recursion, indirect object resolution repeatedly re-enters the same compressed object:

  • reference.ObjectNumber = 554
  • context.CurrentIndirectReference.ObjectNumber = 554
  • TryGetIndirectObject(554, ...) == false at re-entry
In Development
Last Updated: 30 Jun 2026 14:31 by ADMIN

PdfStreamWriter: Duplicated pages when merging documents with identical page content streams but different per-page Resources.

Workaround: Use the RadFixedDocument.Merge() method instead of the PdfStreamWriter.

In Development
Last Updated: 30 Jun 2026 14:28 by ADMIN
NullReferenceException is thrown when importing a document with missing Owner (O) in tagged structure attributes.
Unplanned
Last Updated: 29 Jun 2026 12:11 by Paulo
PdfProcessing: Signature validation reports file as "modified" while Adobe Acrobat reports "not modified".
In Development
Last Updated: 29 Jun 2026 08:34 by ADMIN
ADMIN
Created by: Tanya
Comments: 5
Category: WordsProcessing
Type: Feature Request
23
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.
Duplicated
Last Updated: 24 Jun 2026 11:30 by ADMIN
Created by: Nathan Kathira
Comments: 1
Category: WordsProcessing
Type: Feature Request
0
It would be nice to have the ability to search text in documents.

Use case:
I needed to replace some keywords with images. I can insert image at the current position, but there is no way to insert it after some text.
Completed
Last Updated: 24 Jun 2026 11:22 by ADMIN
NotSupportedImageFormatException is thrown during DOCX to PDF conversion in Linux.
Completed
Last Updated: 24 Jun 2026 10:48 by ADMIN
Release 2026.2.624 (2026 Q2)
Created by: Nitya
Comments: 0
Category: PdfProcessing
Type: Feature Request
3
When importing and merging documents the fonts are extracted directly from the files and can duplicate if the files contain the same fonts.
Completed
Last Updated: 24 Jun 2026 10:48 by ADMIN
Release 2026.2.624 (2026 Q2)
Opening a file where there is a format string with modificator [Color11] causes an ArgumentException "Invalid modificator" This prevents the file from opening.
Completed
Last Updated: 24 Jun 2026 10:31 by ADMIN
Release Scheduled For = 2026.2.624 (2026 Q2)

StackOverflowException is thrown during PDF export of a document with a Header/Footer containing a page break.

Workaround: Remove page break from all header/footer paragraphs, or from a specific paragraph.

Header defaultHeader = section.Headers.Default;

if (defaultHeader != null)
{
    foreach (var item in defaultHeader.Blocks)
    {
        if (item is Paragraph paragraph)
        {
            paragraph.PageBreakBefore = false;
        }
    }
}

Completed
Last Updated: 24 Jun 2026 10:31 by ADMIN
Release Scheduled For = 2026.2.624 (2026 Q2)
PdfFormatProvider: OutOfMemoryException is thrown during PDF export of a document that has floating shapes whose wrap zones block vertical progress.
Completed
Last Updated: 24 Jun 2026 10:31 by ADMIN
Release Scheduled For = 2026.2.624 (2026 Q2)

When imported in the WordsProcessing model, the current HTML doesn't respect the defined column width and all columns have identical width:

    <colgroup>
        <col span="1" style="width: 33.3302%;">
        <col span="1" style="width: 17.5658%;">
        <col span="1" style="width: 49.104%;">
    </colgroup>

Observed result:

Expected result:

Workaround: use the width property as follows:

    <colgroup>
        <col span="1" width="33.3302%">
        <col span="1" width="17.5658%">
        <col span="1" width="49.104%">
    </colgroup>
1 2 3 4 5 6