XSIApplication.Interactive

Description

Returns true if the application is in interactive mode or false if it runs in batch mode (Boolean).

C# Syntax

// get accessor
Boolean rtn = XSIApplication.Interactive;

Examples

VBScript Example

'
'	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