Deleting pictures from Excel: Shapes.Item.Delete doesn't work
Afficher commentaires plus anciens
I have an Excel sheet (assume sheet 5) with several images in it. That is to say .jpg or .png. I do this:
... blah blah...
sheethandle = get(Sheets, 'Item', 5);
invoke(sheethandle, 'Activate');
Activesheet = Excel.Activesheet;
Shapes = sheethandle.Shapes;
for s = Shapes.Count:-1:1
Shapes.Item(s).Delete;
end
At this point, the Shapes variable shows a count of 0 when examined in the workspace. However, the Excel sheet still shows all the images intact. What do I need to do to make it work?
Réponses (1)
Othmane ELMOUATAMID
le 13 Août 2018
Modifié(e) : Othmane ELMOUATAMID
le 13 Août 2018
0 votes
Hi AR,
1 commentaire
AR
le 13 Août 2018
Catégories
En savoir plus sur Spreadsheets dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!