Jump to content

Recommended Posts

Posted

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.

Posted
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....

Posted

Hope this helps in availing what you actually intend too....

 

Of course buddy, Thanks you soooooooooo much

 

So nice.

Posted

As always Lee.... Did anybody tell you??? YOU ARE THE BEST!!!!

Posted
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!.....

 

:P

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...