Sort of. In Excel 2019 Professional, on the Insert tab under "shapes" there is also "icons". (see attached screenshot) There is a much richer set of shapes to add here. You're right that they are still referenced via the Shapes collection....so if I go to Excel and insert one, it gets a name like "Graphic 2" and I can do
ActiveSheet.Shapes("Graphic 2").delete
and that deletes it....in that sense you have answered my original poorly formed question. Thanks
But building on that, I now need to be able to insert one of these programatically. If I look at the object model for the shapes object though, I can find the .addShape method (
reference) but it wants the type to be a member of the
MsoAutoShapeType enumeration. And that is just the stuff you see under the "shapes" button, not the "icon" button. For instance, under the icon button the first section that shows up is "Accessibility" and it has wheelchair icons, an ear with a line through it for deafness, a braille icon, etc. Do you have any idea how those might be accessed?
Thanks!