attributeLocation()

Synopsis

Returns the insertion point of the attribute reference.

Syntax

attributeLocation ( handle As String, _
                    tag As String, _
                    Optional value As Any = "" ) As Point 		
Argument Type Description
handle string The handle of the insert. Must be the "modelSelf" handle, such as: first(insert_1.modelSelf) . Note: modelSelf returns a list, so you must use the first() function to retrieve only the first element.
tag string The attribute tag.
value any Optional; the attribute value; default is "".

Example 1

Intent >attributeLocation(First(TestInsert.modelSelf), "Name") 		
--> Point_(0.0, 0.0, 0.0, WorldFrame())