excel - Remove picture in EPPlus -


using eplus, how remove exiting picture worksheet? don't see "remove" method on drawings collection.

exceldrawings has remove method:

example: sheet.drawings.remove("image1");

    //     // summary:     //     removes drawing.     //     // parameters:     //   drawing:     //     drawing     public void remove(exceldrawing drawing);     //     // summary:     //     removes drawing.     //     // parameters:     //   index:     //     index of drawing     public void remove(int index);     //     // summary:     //     removes drawing.     //     // parameters:     //   name:     //     name of drawing     public void remove(string name); 

Comments

Popular posts from this blog

Glib GIOChannel -

delphi - When I encode/decode SMS PDU (GSM 7 Bit) user data, do I need prepend the UDH first? -

python - Obscure curses error message when creating a sub window -