Example
The following example sets the background color to yellow and sets the background color style to show all grid lines.
C++
// Set the background color style
m_Spread.SetBackColorStyle(BackColorStyleUnderGrid);
// Define the background color
// yellow, RGB(255,255,0)
m_Spread.SetBackColor(0x0000FFFF);
Visual Basic
' Set the background color style
fpSpread1.BackColorStyle = BackColorStyleUnderGrid
' Define the background color
' yellow, RGB(255,255,0)
fpSpread1.BackColor = &H0000FFFF&