Sets the background color of text in a list view control.
BOOL SetTextBkColor( COLORREF cr );
A COLORREF specifying the new text background color. For information, see COLORREF in the Windows SDK.
Nonzero if successful; otherwise zero.
// Use the 3D button face color for the background. COLORREF crBkColor = ::GetSysColor(COLOR_3DFACE); m_myListCtrl.SetTextBkColor(crBkColor); ASSERT(m_myListCtrl.GetTextBkColor() == crBkColor);
Header: afxcmn.h