Description
Used to get or set the background color of a specific cell in the GridChoiceDialog. The background color is applied to the cell where the specified row and column intersect.
Applicable Events
Post Extract, AnyApp Post Extract, Pre-Verify, Interactive, Verification Function Key (F-Key), Post-Verify
Syntax
object.CellBackColor (nRow, nCol)
Parameters
Object is a reference to the GridChoiceDialog object. For more information, see GridChoiceDialog Object (page GridChoiceDialog Object).
CellBackColor is the command.
nRow is the row number that the specified cell is in.
nCol is the column number that the specified cell is in.
Example
To get the property value:
nColor = GridChoiceDialog.CellBackColor(1,2) ‘ get background color of cell at row 1, col 2
To specify the property value:
GridChoiceDialog.CellBackColor(2,1) = 16777215 ‘ set background color of cell at row 2, col 1 to White