0

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

4

1 回答 1

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);
于 2012-11-23T18:58:32.170 回答