CComboBox::GetCurSel
Chiamare la funzione membro per determinare quale elemento della casella combinata è selezionato.
int GetCurSel( ) const;
Valore restituito
Indice in base zero dell'elemento selezionato nella casella di riepilogo di una casella combinata, o CB_ERR se non viene selezionato alcun elemento.
Note
GetCurSel restituisce un indice nell'elenco.
Esempio
// Select the next item of the currently selected item
// in the combo box.
int nIndex = m_pComboBox->GetCurSel();
int nCount = m_pComboBox->GetCount();
if ((nIndex != CB_ERR) && (nCount > 1))
{
if (++nIndex < nCount)
m_pComboBox->SetCurSel(nIndex);
else
m_pComboBox->SetCurSel(0);
}
Requisiti
Header: afxwin.h