Sweety Posted November 8, 2010 Posted November 8, 2010 Hello everybody . What are the DXF codes that would get the XYZ of the first and second points of a selected Dimension ? (setq ss (car(entsel "\nSelect Dimesion :"))) (setq e (entget ss)) (setq first (cdr (assoc ........... ;XYZ of First point (setq second (cdr (assoc ...........; XYZ of Second point Many thanks GUYS. Quote
NHM Posted November 8, 2010 Posted November 8, 2010 Hello everybody . What are the DXF codes that would get the XYZ of the first and second points of a selected Dimension ? (setq ss (car(entsel "\nSelect Dimesion :"))) (setq e (entget ss)) (setq first (cdr (assoc ........... ;XYZ of First point (setq second (cdr (assoc ...........; XYZ of Second point Many thanks GUYS. To get the xyz of origin points of a selected dimension, here are the dxf codes (setq tt (entsel)) (setq ent (entget (car tt))) (setq 1st (cdr (assoc 13 ent))) (setq 2nd (cdr (assoc 14 ent))) Hope this helps in availing what you actually intend too.... Quote
Sweety Posted November 8, 2010 Author Posted November 8, 2010 Hope this helps in availing what you actually intend too.... Of course buddy, Thanks you soooooooooo much So nice. Quote
NHM Posted November 8, 2010 Posted November 8, 2010 Welcome!!! Happy that I could be of some help to you.... Quote
Lee Mac Posted November 8, 2010 Posted November 8, 2010 Here is the latest reference: http://images.autodesk.com/adsk/files/acad_dxf2.pdf Quote
NHM Posted November 8, 2010 Posted November 8, 2010 As always Lee.... Did anybody tell you??? YOU ARE THE BEST!!!! Quote
Sweety Posted November 8, 2010 Author Posted November 8, 2010 Here is the latest reference: http://images.autodesk.com/adsk/files/acad_dxf2.pdf Thanks Lee , it's very ineresting. Do you have any PDF book for the ActiveX and VBA Reference the same as the attached one with cad ? Many thanks Quote
alanjt Posted November 8, 2010 Posted November 8, 2010 Here is the latest reference: http://images.autodesk.com/adsk/files/acad_dxf2.pdf Yoink!..... Quote
Lee Mac Posted November 8, 2010 Posted November 8, 2010 Do you have any PDF book for the ActiveX and VBA Reference the same as the attached one with cad ? The VLIDE Help Docs are all you really need Yoink!..... 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.