Reputation: 359
I have a project which reads in a excel file using EPPlus. However, often the files can include hidden columns.
Is there a way of determining if a column is hidden using EPPlus?
I basically want to ignore any hidden columns.
Upvotes: 1
Views: 2358
Reputation: 29222
Given an OfficeOpenXml.ExcelWorksheet ws
(from the EPPlus assembly)
var hidden = ws.Columns(1).Hidden;
Upvotes: 1