isCOBOL Evolve : User Interface : Controls Reference : GRID : Properties : Cell-Current-Background-Color
Cell-Current-Background-Color
This property allows you to retrieve the background color of the cell identified by the X and Y properties. See "Color management" for further details.
 
Example - Get the background color of a cell
procedure division.
...
  modify screen-1-gr-1 x = 1y = 2
  inquire screen-1-gr-1
          cell-current-background-color ws-cell-b-color
...