Excel 删除ePlus中的图片

Excel 删除ePlus中的图片,excel,epplus,Excel,Epplus,使用EPlus,如何从工作表中删除现有图片?我在“绘图”集合中没有看到“删除”方法。ExcelDrawings有一个删除方法: 示例:sheet.Drawings.Remove(“image1”) // // Summary: // Removes a drawing. // // Parameters: // Drawing: // The drawing public void Remove(ExcelDra

使用EPlus,如何从工作表中删除现有图片?我在“绘图”集合中没有看到“删除”方法。

ExcelDrawings有一个删除方法:

示例: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);