Is there a Function to get the X, Y coordinates of a shape

M

Michel LAPLANE

I don't know what you mean by function but you can take the PinX and PinY of
a shape that gives the center of the boundingbox of a 2D shape.

In VBA :

Dim strCoordX as string
Dim strCoordY as string

strCoordX = visShape.Cells("PinX")
strCoordY = visShape.Cells("PinY")
 
Top