isCOBOL Evolve : User Interface : Controls Reference : GRID : Properties : Row-Rollover-Foreground-Color
Row-Rollover-Foreground-Color
This property allows you to set or retrieve the foreground color of the row that rows assume when the mouse pointer hovers over them. See "Color management" for further details.
 
Example - Define a grid whose rows are highlighted on mouseover
screen section.
...
  03 screen-1-gr-1 Grid
     line 5.7
     column 3.1
     size 34.6 cells 
     lines 15.5 cells 
     id 1
     event procedure screen-1-gr-1-evt-proc
     no-box
     column-headings
     row-dividers 1
     end-color 9
     row-rollover-background-color 3
     row-rollover-foreground-color 7
     heading-font Default-Font
     cursor-frame-width 3
     num-rows 5
     .
...