Message 1 of 2
Convert Lisp command to VBA
Not applicable
08-08-2008
07:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
To get the height of a piece of mtext, I would use the commands:
(setq text_last (entlast))
(setq mtext_height (cdr (assoc 43 (entget text_last))))
Code 43 of mtext is the height of the mtext.
I'm converting a lot of our lisp routines to VBA. How do I access code 43 of mtext using VBA commands?
(setq text_last (entlast))
(setq mtext_height (cdr (assoc 43 (entget text_last))))
Code 43 of mtext is the height of the mtext.
I'm converting a lot of our lisp routines to VBA. How do I access code 43 of mtext using VBA commands?