what m_list.SetItemState(idx, 1, FALSE) means? MFC CListCtrl

59 Views Asked by At

I saw this peace of code m_list.SetItemState(idx, 1, FALSE) from MFC based project.

my question is what 1 and FALSE mean?

I saw that state LVIS_FOCUSED is 0x0001, so I think 1 is LVIS_FOCUSED, but why they didn't use just LVIS_FOCUSED ?

And detailed explanation about 3rd parameter (for example when it is FALSE) is not given (CListCtrl::SetItemState )

0

There are 0 best solutions below