M
mikeFin
Hello!
On every CodeSnippet I can find, I always see that you have to loop through
all shapes to find the one shape you want to work with.
So my question here is: Is there a way to work with a shape (of whom I do
know the Name or ID) without having to loop through all shapes?
I used to do something like this:
For Each shp In ActivePage.Shapes
If shp.Name = "myShapeName" Then
...
End If
Next
Is there a quicker way to do that?
Thanks in advance!
On every CodeSnippet I can find, I always see that you have to loop through
all shapes to find the one shape you want to work with.
So my question here is: Is there a way to work with a shape (of whom I do
know the Name or ID) without having to loop through all shapes?
I used to do something like this:
For Each shp In ActivePage.Shapes
If shp.Name = "myShapeName" Then
...
End If
Next
Is there a quicker way to do that?
Thanks in advance!