itacad Posted Tuesday at 09:17 PM Share Posted Tuesday at 09:17 PM Hi, I'm using with satisfaction a command that I recently discovered: ATTOUT. The extraction creates a reference called "handle"...I ask if the alphanumeric code indicated is searchable within the file and how. Greetings Quote Link to comment Share on other sites More sharing options...
BIGAL Posted Wednesday at 01:23 AM Share Posted Wednesday at 01:23 AM Handles are a unique property of an object assigned by AutoCAD you can not change it or modify it in a dwg. You can search for an object via its "Handle". Quote Link to comment Share on other sites More sharing options...
CyberAngel Posted Thursday at 12:24 PM Share Posted Thursday at 12:24 PM A handle is like a serial number for an object in a drawing. You can always identify or select or modify an object if you have its handle. Unfortunately, handles are not much use unless you're writing a program. AutoLISP, for example, has a set of functions for working with individual objects. entget gives you the same information about an object that LIST does. entmod lets you change the properties of an object. entsel lets you select an object (or group of objects) in the drawing. Obviously, these commands are very powerful, but they can be very dangerous as well. Quote Link to comment Share on other sites More sharing options...
BIGAL Posted Friday at 02:10 AM Share Posted Friday at 02:10 AM A bit more look into (handent "handleID") lets you find an object and do something with it, (entdel (handent "handleID")) Quote Link to comment Share on other sites More sharing options...
itacad Posted Saturday at 09:39 PM Author Share Posted Saturday at 09:39 PM Thank you very much! I found this page useful on the subject: https://knowledge.autodesk.com/support/autocad/troubleshooting/caas/sfdcarticles/sfdcarticles/Selecting-or-zooming-to-an-entity-based-on-its-handle-identification-code.html Quote Link to comment Share on other sites More sharing options...
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.