• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

steps to insert gif image in excel 2010

Hi there
Here is my code for insert image to Excel which is from google:
/// <summary>
/// Add an image to XLSXPage
/// </summary>
/// <param name="page"></param>
/// <param name="img"></param>
/// <param name="x"></param>
/// <param name="y"></param>
public void AddImageToPage(XLSXPage page, REImage img, float x, float y)
{
page.AddImage(img, x, y, null);
}
You can have a try.
 
Back
Top