honey Posted November 4, 2009 Posted November 4, 2009 Dear Sirs I am writing a lisp in which i want to fillet, if the object selected is a lwpolyline. But i am not able to derive, wether or not the selected entity is a lwpolyline. Can anyone help me on this. Thank you in advance. Quote
gile Posted November 4, 2009 Posted November 4, 2009 Hi, Get the DXF list for you entity using entget function and look for the 0 code group value: (setq ent (car (entsel))) (if (= "LWPOLYLINE" (cdr (assoc 0 (entget ent)))) (alert "You selected a polyline") (alert "You didn't select a polyline) ) 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.