AutoCAD Civil 3D Customization
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Find insertion point for a surface label
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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
Re: Find insertion point for a surface label
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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_Refere
In case of spot elevation label you might be intrested in Autodesk.Civil.DatabaseServices Namespace -> SurfaceElevationLabel Class -> SurfaceElevationLabel Properties -> Location
