NPOI导出时,如何控制单元格大小,可以让他自动宽度吗
設置某一列自動寬:
ISheet.AutoSizeColumn(int column);
設置某一列的固定寬度:
ISheet.SetColumnWidth(int columnIndex, int width);
谢谢小明