Stop Event
The Stop event is executed following the Exec Event, to instruct the script that the current advanced control computation has stopped. It is only called after the Start event has been called. This is a good place to cleanup data and close any open files.
Jscript
function SliderEvent_Stop(Inputs,Outputs) {
// Add your code here
};
VBscript
Sub SliderEvent_Stop()
rem Add your code here
End Sub
Was this helpful?