使用EPplus,如何从工作表中删除现有图片?我没有在图纸集合上看到“删除”方法。
答案 0 :(得分:1)
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);