CGrid:SetFontColor
The SetFontColor method sets the text color of a CGrid cell. Also see SetBkColor. Use this method to highlight a cell. This method overrides the initial grid properties defined by the values of GridParams.sBodyFace and GridParams.sHdgFace.
CGrid:SetFontColor( nCol, nRow, strRGB )
Where nCol and nRow are the column and row location of the cell.
strRGB is a string specifying the R,G,B components of the color. Each color component is in the range 0 through 255. For example, "0,0,0" is black and "255,255,255" is white.
The following script sets both the text and background color of the cell at column 4, row 2 to white text on a green background:
|
-- create a CGrid object |
|
-- set the text color at column 4, row 2 |
|
-- set the background color at column 4, row 2 |
Mira Pro x64 Script User's Guide, Copyright Ⓒ 2023 Mirametrics,
Inc. All Rights Reserved.