Hi,
I have a Shape with a label. On resize the location of this label will be adapted to my new Size. I would want the label to stay in the top of my Shape. Is it possible to prevent resize from adapting the location of it subelements?
Thank you
Matthias Gorning Messages: 80 Registered: April 2010 Location: Germany
Member
What do you mean with a label? A text graphics algorithm?
What is the structure of your pictogram model? I guess your shape references directly a text ga. In this case you must add another graphics algorithm:
shape -> rectangle ga -> text ga
You can set the location of your text ga once and it will never be changed automatically. Only the main graphics algorithm (in this case the rectangle) will be adapted automatically.
the Structure of my Shape:
InvisibleRectangle -> Rectangle -> Text
If the location is not changed i suppose it is the size, but as the the Text has a fix font-size, changing the the Text size will look like moving the Text. When resizing something you may let the upper-left corner stay, but the mid will move (I am not sure, if i am clear).