Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets the callback mask for a list view control.
BOOL SetCallbackMask(
UINT nMask
);
Parameters
- nMask
New value of the callback mask.
Return Value
Nonzero if successful; otherwise zero.
Example
// Set the callback mask so that only the selected and focused states
// are stored for each item.
m_myListCtrl.SetCallbackMask(LVIS_SELECTED|LVIS_FOCUSED);
ASSERT(m_myListCtrl.GetCallbackMask() ==
(LVIS_SELECTED|LVIS_FOCUSED));
Requirements
Header: afxcmn.h