 Boards 
 that Support the Function
Boards 
 that Support the Function  
 
 Operation             Sets 
 the ESC key check in DLL to on or off.
 Operation             Sets 
 the ESC key check in DLL to on or off.
 Format
 Format                 
(VB.NET)
Dim Stp, Ret As Integer
Ret = GpStstop(Stp)
(C)
DWORD Stp, Ret;
Ret = GpStstop(Stp);
(C#)
uint Stp, Ret;
Ret = gpib.Ststop(Stp);
(Python)
Stp, Ret = ctypes.c_ulong(), ctypes.c_ulong()
Ret.value = GpibPy.GpStstop(Stp)
 Mode                   Master 
 mode/Slave mode
 Mode                   Master 
 mode/Slave mode
 Parameters
 Parameters
Stp : Esc key setting
0 : Not to be checked
1 : To be checked
Ret : Return value
0 : Normal completion
80 : GpIni() hasn't execute
140 : Asynchronous function is executing now
255 : Parameter error
(See "Return Values" for details.)
 Notes
 Notes
By default, ESC key setting is checked. 
If the "ESC key on" is detected during interaction, the function 
 is forcibly exited from DLL. (except for GpSwait)