Completed
Last Updated: 29 Sep 2020 09:03 by ADMIN
Release LIB 2020.3.1005 (05/10/2020)
When xlsx/docx document is imported, and its main story is with non-default name ('workbook. xml'/'document.xml'), e.g. workbook2.xml/document2.xml, NullReferenceException is thrown and the document is not imported.

Note: Such documents are usually produced after conversion from a template dotx/xlsm.
Completed
Last Updated: 14 Mar 2024 09:00 by ADMIN
Release 2024.1.305 (2024 Q1)

Hi there I have a pdf and whenever I try to Import the PDF file into PdfFormatProvider.Import method for flattening purposes, it throws null reference exception.

I have added a sample .net project with PDF added as source. You just need to run the project on your end. I am using version 2023.3.1106 of document processing library.

I am using ASP.NET 4.8 framework.

Thanks

Completed
Last Updated: 08 Nov 2021 11:13 by ADMIN
Release R3 2021 SP1
Forecolor of table cells text is not preserved when exporting to PDF
Completed
Last Updated: 26 Jun 2023 12:56 by ADMIN
Release R2 2023 SP1
Encrypting document with Interactive forms containing checkboxes exports the checkbox widget with invalid normal caption appearance and name value. After the document is visualized in Adobe Reader DC the exported checkboxes are displayed with different check mark symbol or none.
Completed
Last Updated: 02 Mar 2020 09:53 by ADMIN
Release LIB 2020.1.302 (03/02/2020)
Exception when using multiple instances of RtfFormatProvider
Completed
Last Updated: 07 Sep 2023 13:41 by ADMIN
Release R3 2023
The print title defined name can contain any type of formula or literal and the document will still be valid. However, SpreadProcessing expects a cell range reference and throws and exception if the name contains something different.
Completed
Last Updated: 05 Jul 2023 11:55 by ADMIN
Release R2 2023 SP1
The NotBetween conditional formatting rule applies the format to all the cells, no matter if the rule is satisfied or not.
Completed
Last Updated: 13 Apr 2022 13:49 by ADMIN
Release R2 2022
Exception when converting to PDF and there are cells with a width less then 5.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023

InvalidCastException 'Unable to cast object of type 'EffectContainerElement' to type 'EffectListElement' is thrown on import.

As a workaround, you can either use the old version of the assemblies (R2 2022) or you can set ImportSettings.SkipShapes of the DocxFormatProvider to true.

Completed
Last Updated: 05 Oct 2022 14:18 by ADMIN
Release R3 2022 SP1
Exporting documents with PrintTitles and sheet names containing spaces causes missing PrintTitles.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R3 2022 SP1
Created by: Foxy
Comments: 0
Category: Telerik Document Processing
Type: Bug Report
1
When exporting a rotated page from a PDF document to an image, the resulting image is the wrong size, and the page looks clipped.
Completed
Last Updated: 19 Sep 2023 10:32 by ADMIN
Release R3 2023
If the same rule, which uses a formula, is applied on more than one range the result data validation is incorrect, because the formula is translated wrong. E.g. if a custom rule with a formula =IsNumber(A1) is applied on A1:C6 and F1:F6, the rule for cell A1 would be =IsNumber(F1) instead of IsNumber(A1)
Completed
Last Updated: 10 Aug 2023 13:07 by ADMIN
Release R3 2023
Importing an XLS document containing _xlfn.SINGLE defined name causes an InvalidOperationException.
Completed
Last Updated: 12 Sep 2023 11:26 by ADMIN
Release R3 2023

A NullReferenceException is thrown when copying a sheet containing a chart with Marker whose FIll is null.

There is a workaround which should be applied before copying the sheet:

foreach (FloatingChartShape chart in wsPureCompTemplate.Charts)
{
    foreach (SeriesGroup seriesGroup in chart.Chart.SeriesGroups)
    {
        foreach (SeriesBase series in seriesGroup.Series)
        {
            LineSeries lineSeries = series as LineSeries;
            if (lineSeries != null && lineSeries.Marker != null && lineSeries.Marker.Fill == null)
            {
                lineSeries.Marker.Fill = new NoFill();
            }

            ScatterSeries scatterSeries = series as ScatterSeries;
            if (scatterSeries != null && scatterSeries.Marker != null && scatterSeries.Marker.Fill == null)
            {
                scatterSeries.Marker.Fill = new NoFill();
            }
        }
    }
}

Completed
Last Updated: 10 Aug 2023 12:20 by ADMIN
Release R3 2023
Created by: Jaroslaw
Comments: 1
Category: Telerik Document Processing
Type: Bug Report
0
Values filled in forms inside a PDF document are missing when exporting the document to image using the SkiaImageFormatProvider.
Completed
Last Updated: 21 Jul 2023 12:22 by ADMIN
Release R3 2023
Exporting a document containing workbook properties and protection leads to an invalid document.
Completed
Last Updated: 21 Jul 2023 11:07 by ADMIN
Release R3 2023
Importing documents containing many formulas referring to constants values is causing a memory leak.
Completed
Last Updated: 28 Apr 2023 12:54 by ADMIN
When auto fitting the width of columns containing conditional formatting sometimes causes NullReferenceException.
Completed
Last Updated: 27 Apr 2023 11:50 by ADMIN
Release R2 2023
Some files, where the parts of the xlsx are arranged in specific order, throw InvalidOperationException: "Sequence contains no matching element".
Completed
Last Updated: 17 May 2023 14:09 by ADMIN
Release R2 2023
Exporting to PDF documents containing empty table rows results in 0 height of the rows.
1 2 3