ISDBProgress::Terminate
From MMWiki
CoClass SDBProgress, Interface ISDBProgress
Property Get Terminate As Boolean
[edit]
Property description
Returns TRUE when script processing should terminate (e.g. the thread of this script was terminated by user). The script code should periodacally check this property (mainly in loops) and terminate its processing as soon as possible in case the property value is TRUE.
[edit]
Example code
for i=0 to list.count-1 ' ... some code here if Progress.Terminate then Exit For end if next
