Skip to main content
Skip table of contents

getGlobalVariable

Versionshinweise

15.2

Code

GROOVY
Object VariableUtils.getGlobalVariable(String variableName)

Beschreibung

Gibt den Wert einer globalen Variablen des Systems im entsprechenden Datentyp zurück.

Parameter

  • variableName - Der Name der globalen Variable

Rückgabe

Der Wert der Variable im korrekten Datentyp

Beispiele

GROOVY
String stringValue = VariableUtils.getGlobalVariable("stringVar");		// Datentyp "Text"
double doubleValue = VariableUtils.getGlobalVariable("doubleVar");		// Datentyp "Gleitkommazahl"	
boolean booleanValue = VariableUtils.getGlobalVariable("booleanVar");		// Datentyp "Wahrheitswert"
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.