アプリケーションがインタラクティブモードで実行されている場合は True を、バッチモードで実行されている場合は false を、Booleanとして戻します。
'
' Check if the application is in interactive mode
'
IF Application.Interactive THEN
LogMessage "The application runs in interactive mode."
ELSE
LogMessage "The application runs in batch mode."
END IF
|