static boolean IsBatchMode()
If the IMLPlus program is running in batch mode, the return value is true. If the IMLPlus program is running in interactive mode, the return value is false.
None
Use this method to determine whether the IMLPlus program is running in batch mode or interactive mode.
if Runtime.IsBatchMode() then
print "Batch Mode";
else
print "Interactive Mode";