Skip to main content
Skip table of contents

setBackgroundColor (GUIUtils)

Versionshinweise

12.2

Code

GROOVY
GUIUtils.setBackgroundColor(Color backgroundColor, String... componentNames)

Beschreibung

Ändert die Hintergrundfarbe von GUI Komponetnen.

Parameter

  • backgroundColor - Die neue Hintergrundfarbe, z.B. GUIConstants.COLOR_WHITE oder new Color(0-255 Rot, 0-255 Grün, 0-255 Blau).
  • componentNames - Eine kommaseparierte Liste von internen Komponentnamen, z.B. "MatchCode.Customer" or "Button123".

Beispiele

GROOVY
GUIUtils.setBackgroundColor(GUIConstants.COLOR_WHITE, "MatchCode.Customer", "Button123");
GUIUtils.setBackgroundColor(new Color(0, 255, 0), "MatchCode.Customer", "Button123");
JavaScript errors detected

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

If this problem persists, please contact our support.