CListBox::GetSel
Öğenin seçim durumunu alır.
int GetSel(
int nIndex
) const;
Parametreler
- nIndex
Öğenin sıfır tabanlı dizini belirtir.
Dönüş Değeri
Belirtilen öğe seçiliyse, pozitif bir sayı; Aksi durumda 0 olur. Dönüş değeri LB_ERR bir hata meydana gelirse.
Notlar
Bu üye işlev hem de tek ve çoklu seçim liste kutuları ile çalışır.
Seçili olan liste kutusu öğesi dizine almak için kullanmak CListBox::GetCurSel.
Örnek
// 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);
}
Gereksinimler
Başlık: afxwin.h