0
使用EPlus,您如何從工作表中刪除現有圖片?我在Drawings集合中看不到「刪除」方法。刪除EPPlus中的圖片
使用EPlus,您如何從工作表中刪除現有圖片?我在Drawings集合中看不到「刪除」方法。刪除EPPlus中的圖片
ExcelDrawings具有Remove方法:
實施例:sheet.Drawings.Remove( 「圖像1」);
//
// 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);