CCheckListBox( );
Remarks
Constructs a CCheckListBox object.
You construct a CCheckListBox object in two steps. First define a class derived from CCheckListBox, then call Create, which initializes the Windows checklist box and attaches it to the CCheckListBox object. For example:
class CMyCheckListBox : public CCheckListBox
{
DECLARE_DYNAMIC(CMyCheckListBox)
// Constructors
public:
CMyCheckListBox();
BOOL Create(DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID);
...
CCheckListBox Overview | Class Members | Hierarchy Chart
See Also CCheckListBox::Create