Grid.SetCellColors

Grid.SetCellColors ( 

string  ObjectName,

number  Row,

number  Column,

table   Colors,

boolean Redraw = true )

Example 1

-- Change cell colors for cell 1, 1
-- Make the background white and the text black
tbColors = {Background=16777215,Text=0};
Grid.SetCellColors("Grid1",1,1,tbColors);

Makes the "Grid1" grid object's (1,1) cell background color white and text black.

See also:  Related Actions