CComboBox::SetCurSel
選取下拉式方塊的清單方塊中的字串。
int SetCurSel(
int nSelect
);
參數
- nSelect
指定字串之以零起始的索引選項。 如果為,在清單方塊中所有目前選取項目移除 1,並清除編輯控制項。
傳回值
選取項目之以零起始的索引,如果訊息成功。 傳回值是 CB_ERR ,如果 nSelect 的項目數目大於清單中,或是 nSelect 設定為– 1,清除選取範圍。
備註
如果需要, (如果清單方塊可以看見),清單方塊移動字串到檢視。 變更 下拉式方塊中的編輯控制項中的文字來反映新的選取範圍。 移除在清單方塊中的任何之前的選取範圍。
範例
// Select the last item in the combo box.
int nLast = pmyComboBox->GetCount() - 1;
if (nLast >= 0)
m_pComboBox->SetCurSel(nLast);
需求
Header: afxwin.h