How to get the true TextNote Location?

Element.Get Location Node is not returned TextNote’s Location.
I found out other posts’s solution with Bounding box. But my TextNotes also have leaders, so the Bounding box is random.
How can we directly get Location of TextNote ( on Model View: Floor plan, RCP, Elevation… and on Drafting View)?

Text notes have a Coord property that gives the location of the text element
You will need to use python to get the value
OUT = [txt.Coord for txt in UnwrapElement(IN[0])]

View from sample architectural file - note the 5 text elements on the right are aligned

1 Like

Hi @Jin try elementlocation from clockwork it should work

1 Like

Great. It works. Thanks Mike!

Thank you! I got it!

1 Like