Quantcast
Channel: EPPlus Issue Tracker Rss Feed
Viewing all articles
Browse latest Browse all 2262

Commented Unassigned: Table header cannot be modified [15245]

$
0
0
Currently it's not possible to change the header of table.
If you have an existing Excel file with a table, then the following code will write "Test" in ALL cells BUT the cell(s) which belong to a table header.

ExcelPackage package = new ExcelPackage(new FileInfo(@"C:\temp\template.xlsx"));
ExcelWorksheet sheet = package.Workbook.Worksheets[1];
for (int i = 1; i < 20; i++)
{
sheet.Cells[i, 2].Value = "Test";
}

package.Save();

Any chance to see a fix for this or at least a workaround?
Thanks
Comments: Fixed in changeset 3992e0ed4ed5

Viewing all articles
Browse latest Browse all 2262

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>