Row-Color
This property allows you to set or retrieve the color of the row identified by the Y property. Foreground and background color values are combined and therefore RGB colors are not supported. See "Color management" for further details. When this property is set to zero, the row inherits the column color.
 
Example - Modify the color of the third row in the grid
procedure division.
...
  modify screen-1-gr-1
         y 3
         row-color 480
...