PDA

View Full Version : Regenerate without using RegenAll command


ccowgill
2006-12-18, 05:41 PM
I am using a reactor to fire a command so I cant use (command "regenall") in my program, I was hoping someone could point me in the direction of an alternative method, preferably using vla-regen or something related.

Thanks,

T.Willey
2006-12-18, 05:54 PM
(vla-Regen
(vla-get-ActiveDocument
(vlax-get-Acad-Object)
)
acActiveViewport
)

ccowgill
2006-12-18, 06:02 PM
That was it, thanks.