标签: c# excel npoi
使用C#和NPOI,我想清除.xls文件中的一些单元格,并删除浮动图像(我知道它不是任何单元格的一部分)。我可以通过以下方式清除细胞:
ICellStyle style = hssfWorkbook.CreateCellStyle(); cell.SetCellValue(""); cell.SetCellFormula(""); cell.CellStyle = style;
但是,如何删除图片?