我知道如何获得RowHeight
using(var xls2003Stream = new MemoryStream(xlsBytes))
{
using(var reader = ExcelReaderFactory.CreateReader(xls2003Stream))
{
var height = reader.RowHeight;
...
}
}
但是问题是-我可以使用ExcelDataReader库获取列宽吗?
答案 0 :(得分:0)
基于searching the library's repo for the word width
doesn't show up anything useful的事实,我要说否,目前尚不可能。但是,从the issue you opened开始,您知道吗? :)
答案 1 :(得分:0)
问题在GitHub上打开,因为他们只是没有实现此属性。 https://github.com/ExcelDataReader/ExcelDataReader/issues/365