Example
The following example sets the cell note indicator color.
C++
// Set the cell note color
m_Spread.SetTextTip(TextTipFixed);
m_Spread.SetCol(2);
m_Spread.SetRow(2);
m_Spread.SetCellNote('test');
m_Spread.SetCellNoteIndicatorColor(0x0000FFFF);
Visual Basic
' Set the color for a text tip
fpSpread1.TextTip = TextTipFixed
fpSpread1.Col = 21
fpSpread1.Row = 2
fpSpread1.CellNote = "test"
fpSpread1.CellNoteIndicatorColor = &H80FF&