Completed
Last Updated: 13 Feb 2026 09:39 by ADMIN
Release 2026.1.210 (2026 Q1)
Yannick Patton
Created on: 27 Nov 2025 12:45
Category: SpreadProcessing
Type: Bug Report
0
SpreadProcessing: LocalizableException is thrown after removing columns from a workbook with set Print Titles

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;

 

0 comments