删除EPPlus中的图片
使用EPlus,您如何从工作表中删除现有图片? 我在Drawings集合中看不到“删除”方法。
ExcelDrawings有一个Remove方法:
例如:sheet.Drawings.Remove(“image1”);
//
// Summary:
// Removes a drawing.
//
// Parameters:
// Drawing:
// The drawing
public void Remove(ExcelDrawing Drawing);
//
// Summary:
// Removes a drawing.
//
// Parameters:
// Index:
// The index of the drawing
public void Remove(int Index);
//
// Summary:
// Removes a drawing.
//
// Parameters:
// Name:
// The name of the drawing
public void Remove(string Name);
链接地址: http://www.djcxy.com/p/72023.html