Author Topic: Change property within Reactor?  (Read 2060 times)

0 Members and 1 Guest are viewing this topic.

Shade

  • Guest
Change property within Reactor?
« 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

ElpanovEvgeniy

  • Water Moccasin
  • Posts: 1569
  • Moscow (Russia)
Re: Change property within Reactor?
« Reply #1 on: October 11, 2006, 12:45:40 AM »
Use ENTMOD...

FengK

  • Guest
Re: Change property within Reactor?
« Reply #2 on: October 11, 2006, 01:41:19 AM »
(vlax-put-property obj 'layer strLayerName)
(vlax-put-property obj 'color intColorNumber)
etc..