CListBox::GetSel
擷取項目的選取狀態。
int GetSel(
int nIndex
) const;
參數
- nIndex
指定項目之以零起始的索引。
傳回值
正數,如果指定的項目已選取,否則,它就是 0。 如果發生錯誤,則傳回值為 LB_ERR 。
備註
此成員函式以單一和多重選取清單方塊中使用。
若要擷取目前選取的清單方塊中項目的索引,請使用 CListBox::GetCurSel。
範例
// Dump all of the items select state.
CString str;
for (int i=0;i < m_myListBox.GetCount();i++)
{
str.Format(_T("item %d: select state is %s\r\n"),
i,
m_myListBox.GetSel( i ) > 0 ? _T("true") : _T("false"));
AFXDUMP(str);
}
需求
標題: afxwin.h