BOOL SetBkColor( COLORREF cr );
Return Value
Nonzero if successful; otherwise zero.
Parameters
cr
Background color to set, or the CLR_NONE value for no background color. List view controls with background colors redraw themselves significantly faster than those without background colors. For information, see COLORREF in the Platform SDK.
Remarks
Sets the background color of the list view control.
Example
// The pointer to my list view control.
extern CListCtrl* pmyListCtrl;
// Use the 3D button face color for the background.
COLORREF crBkColor = ::GetSysColor(COLOR_3DFACE);
pmyListCtrl->SetBkColor(crBkColor);
ASSERT(pmyListCtrl->GetBkColor() == crBkColor);
CListCtrl Overview | Class Members | Hierarchy Chart
See Also CListCtrl::GetBkColor