Select to view content in your preferred language

TextSymbol lower left corner location

589
1
10-06-2011 08:41 AM
KarenRobine
Frequent Contributor
I have a TextSymbol.  But the placement is set to middle.  But I basically need to obtain the lower left corner of the text in map units. Possible?

I've looked at the graphics geometry but since its a MapPoint, there's not an extent set for it.
Tags (2)
0 Kudos
1 Reply
KarlMagnusson
Deactivated User
Hi!

Using "end" as placement and setting offset to -15 in both x and y should do the trick.

Karl M
Växjö, Sweden

<esri:TextSymbol  background="true"
    alpha="0.6"
                                textAttribute="fieldName"
    backgroundColor="{symbolColor}"
    border="true"
    borderColor="0x000000"
    color="0x000000"
    placement="end"
    xoffset="-15"
    yoffset="-15">
                 <flash:TextFormat bold="true" size="16"/>
   </esri:TextSymbol>
0 Kudos