Unplanned
Last Updated: 27 Nov 2025 12:45 by Yannick Patton
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