hi let's say i have images on my excel worksheet, how is it possible to delete/remove them from the sheet using c#,
following code gives me exception
Excel.Worksheet ws = Globals.ThisAddIn.GetActiveWorksheet();
foreach (Excel.Shape sh in ws.Shapes)
{
sh.Delete();
}
thanks!