ConfigurationName property (WinStudio scripts)
Applies To
IWSApplication interface
Definition
Returns a string containing the name of the current configuration. Read-only.
Syntax
Application.ConfigurationName
Example
Sub Main()
Dim cfgName As String
cfgName = Application.ConfigurationName
Application.ShowMessage("You are logged on to the " & cfgName & " configuration.")
End Sub