Message 1 of 2
Find insertion point for a surface label
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
If I use this code it will give me the insertion point for a block
(setq ent (car (entsel "\nSelect Main Object: ")))
(setq InsPt (assoc 10 (entget Ent)))
Now if I try to use this for a surface label and try to get the insertion point
(setq ent (car (entsel "\nSelect Main Object: ")))
(setq oEnt (vlax-Ename->Vla-Object ent))
(vlax-dump-object oEnt)
I dont see anything that will help me get the insertion point. Is there some other sneaky way or utility function that can help me do this?
Help? 🙂
thanks a bunch!
dg