Kowal Posted July 29, 2016 Posted July 29, 2016 How to get a point location of Section View? Section View is an object existing only in Civil 3D. I am looking for the properties using: (defun c:prop (/ p1 p2) (vl-load-com) (setq p1 (vlax-ename->vla-object (car (entsel)))) (setq p2 (vlax-get-property p1 "Parent")) .... (vlax-dump-object p2 'T) (princ) ) Looking coordinates of a point in the image. Quote
Hippe013 Posted July 29, 2016 Posted July 29, 2016 Have you looked into the following two methods that are provided for SectionViews? ; FindStationOffsetAndElevationAtXY (6) ; FindXYAtStationOffsetAndElevation (6) It isn't very clear to me what you are trying to do though. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.