Stop
Top  Previous  Next

Description

This COM method terminates the execution of the current script.


Syntax


[VB]
objImageWarp.Stop


[C/C++]
HRESULT Stop();


Parameters

None  


Return Values


S_OK  
Success  
E_FAIL  
Failure.  


Example


This VB code terminates the script execution upon clicking the Stop button:


Private Sub Stop_Click()
IW.Stop
End Sub