In Development
Last Updated: 30 Jan 2026 07:53 by ADMIN

LocalizableException is thrown after removing columns from a workbook with set Print Titles.

Workaround - Remove the PrintTitles before removing the columns:

WorksheetPageSetup pageSetup = workbook.ActiveWorksheet.WorksheetPageSetup;
pageSetup.PrintTitles.RepeatedRows = null;
pageSetup.PrintTitles.RepeatedColumns = null;

 

In Development
Last Updated: 29 Jan 2026 08:18 by ADMIN
Exporting a document containing custom geometry throws a NullReferenceException, halting the export unexpectedly.
In Development
Last Updated: 29 Jan 2026 08:13 by ADMIN
Introduce support for TimeStampServer when using the PdfStreamSigner.
In Development
Last Updated: 28 Jan 2026 14:54 by ADMIN
CryptographicException is thrown when importing AES encrypted document with DocumentInfo.
In Development
Last Updated: 28 Jan 2026 14:48 by ADMIN
SkiaImageFormatProvider: Blacked out images due to incorrectly resolved clipping.
In Development
Last Updated: 27 Jan 2026 15:51 by ADMIN
If the document contains an image that fails to be imported properly, an internal error occurs and the import process is interrupted leading to incomplete document with missing elements.