Find insertion point for a surface label

Find insertion point for a surface label

david_garrigues
Advocate Advocate
663 Views
1 Reply
Message 1 of 2

Find insertion point for a surface label

david_garrigues
Advocate
Advocate

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

0 Likes
664 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable

Not sure AutoLisp "sees" any property of a surface label like insertion point. It is possible though to get a surface label "location" property using .net api (Civil3D 2013 in any case). Spot elevation labels have only one "location" property, but it might be different with other labels (for exapmle surface slope label can have 2 such properties - "location" and "location2"). Check the api reference here:

http://docs.autodesk.com/CIV3D/2013/ENU/API_Reference_Guide/index.html

 

In case of spot elevation label you might be intrested in Autodesk.Civil.DatabaseServices Namespace -> SurfaceElevationLabel Class -> SurfaceElevationLabel Properties -> Location 

 

 

 

 

0 Likes