salman Posted August 6, 2009 Posted August 6, 2009 In event reactor functions dealing with object appended, object erased events. When ever a new object is added or erased I want to re number all the existing objects in the drawing. but for this I need to select all the text (lying on a specific layer) objects in the drawing. SSGET is not allowd to be used in a reactor so how canI select the text objects any suggestion? Any code sample would be a big help. Thanks. Quote
Lee Mac Posted August 6, 2009 Posted August 6, 2009 Perhaps use a VL method: (vlax-for lay (vla-get-layouts (vla-get-ActiveDocument (vlax-get-acad-object))) (vlax-for Obj (vla-get-Block lay) ... do something... 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.