XSIApplication.Interactive

説明

アプリケーションがインタラクティブモードで実行されている場合は True を、バッチモードで実行されている場合は false を、Boolean として戻します。

C#構文

// get accessor

Boolean rtn = XSIApplication.Interactive;

VBScript の例

'

'	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