共用方式為


CListBox::SetCurSel

選取字串並捲動至 檢視中,如果有需要,。

int SetCurSel(
   int nSelect 
);

參數

  • nSelect
    指定要選取的字串之以零起始的索引。 如果 nSelect 為– 1,清單方塊未設定有選取範圍。

傳回值

LB_ERR ,如果發生錯誤。

備註

當新的字串時,清單方塊會從先前選取的字串移除反白顯示。

使用這個成員函式只與單一選取的清單方塊。

設定或移除在多重選取清單方塊中的選取範圍,請使用 CListBox::SetSel

範例

// Select the last item in the list box.
int nCount = m_myListBox.GetCount();
if (nCount > 0)
   m_myListBox.SetCurSel(nCount - 1);

需求

標題: afxwin.h

請參閱

參考

CListBox 類別

階層架構圖

LB_SETCURSEL

CListBox::GetCurSel

CListBox::SetSel