Pause
Top  Previous  Next

Description

This COM method pauses the execution of the current script. After being paused, the execution can be resumed by calling the Run method.


Syntax


[VB]
objImageWarp.Pause


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


Parameters

None  


Return Values


S_OK  
Success  
E_FAIL  
Failure.  


Example


This VB code pauses the script execution upon clicking the Pause button:


Private Sub Pause_Click()
IW.Stop
End Sub