isCOBOL Evolve : User Interface : Controls Reference : STATUS-BAR : Styles : { [ Bold | High | Highlight ] | [ Low | Lowlight ] | Standard }
{ [ Bold | High | Highlight ] | [ Low | Lowlight ] | Standard }
Bold, High, Highlight
The foreground color is forced to be bright.
Low, Lowlight
The foreground color is forced not to be bright.
Standard
The foreground color is left unchanged, the default.
Setting this style with RGB colors has no effect. See "Color management" for further details.
 
Example - Display a status-bar with low background and bold foreground
working-storage section.
77 screen-1-st-2-hdl handle of status-bar.
...
procedure division.
...
*> Display a Window first to display the status-bar upon it
...
  display status-bar
          background-low
          bold
          font Default-Font
          background-color 7
          foreground-color 3
          panel-widths ( 30 50)
          panel-style ( 1 2)
          panel-alignment ( "U" "U")
          panel-bitmap ( icon-png2 icon-png2)
          panel-bitmap-width ( 18 18)
          panel-bitmap-number ( 4 5)
          panel-bitmap-alignment ( "U" "U")
          handle screen-1-st-2-hdl
          .
  modify screen-1-st-2-hdl
     panel-index 1
     panel-text "Date: "
     panel-hint "This is the current system date"
     panel-color 516
     panel-index 2
     panel-text "Screen Status: "
     panel-hint "This is the status of the program"
  .