Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, how can I return a text entity into it's previous position after I change it's allignment type? And I need to use entmod, not (command "_move").
(setq edent (entget textEntity) (setq c73o (assoc 73 edent)) (setq c73n (cons 73 2)) (setq edent (subst c73n c73o edent)) (entmod edent)
After this routine the text changes its position a bit, I want to return it to its previous location, but I need to keep the 73 group as 2 (middle).
Solved! Go to Solution.