TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: Shade on October 11, 2006, 12:42:59 AM

Title: Change property within Reactor?
Post by: Shade on October 11, 2006, 12:42:59 AM
How would one change an entities property (let say layer for example) within a reactor without using the (command "Change") command?

I would like to change the properties  of an object after it has been drawn based on the info contained in the object.

Any help would be appredciated....

Thanks
Shade
Title: Re: Change property within Reactor?
Post by: ElpanovEvgeniy on October 11, 2006, 12:45:40 AM
Use ENTMOD...
Title: Re: Change property within Reactor?
Post by: FengK on October 11, 2006, 01:41:19 AM
(vlax-put-property obj 'layer strLayerName)
(vlax-put-property obj 'color intColorNumber)
etc..