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

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c++ - Using OpenSSL in a multi-threaded application -

All overlapping substrings matching a java regex -