Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个使用 EPPlus 读取 excel 文件的项目。但是,文件通常可以包含隐藏列。
有没有办法使用 EPPlus 确定列是否隐藏?
我基本上想忽略任何隐藏的列。
给定一个OfficeOpenXml.ExcelWorksheet ws(来自 EPPlus 程序集)
OfficeOpenXml.ExcelWorksheet ws
var hidden = ws.Columns(1).Hidden;