Color
This property allows you to set or retrieve the color of the Window control.
The value set here is also the default color of the controls created in the Window control.
Foreground and background color values are combined and therefore RGB colors are not supported. See "Color management" for further details.
 
Example - Display a standard window using the color property to set the foreground and background colors
working-storage section.
77 window-handle usage handle of window.
...
procedure division.
...
  display standard  window background-low
          screen line 41
          screen column 91
          size 64.0
          lines 55.8
          cell width 10
          cell height 10
          label-offset 20
          control font Default-Font
          color 260
          resizable
          modeless
          title-bar
          no wrap
          title "Screen"
          handle window-handle
          .