CListBox::SetCaretIndex
设置焦点矩形对项目在多重选择的指定索引列表框。
int SetCaretIndex(
int nIndex,
BOOL bScroll = TRUE
);
参数
nIndex
指定项的从零开始的索引接收列表框中的焦点矩形。bScroll
如果此值为0,则项目移动,直到完全可见。如果此值不是0,该项移动,直到至少是部分可见。
返回值
LB_ERR,如果错误。
备注
如果该项不可见,它移动到视图。
示例
// Set the caret to be the middle item.
m_myListBox.SetCaretIndex(m_myListBox.GetCount()/2);
ASSERT(m_myListBox.GetCaretIndex() == m_myListBox.GetCount()/2);
要求
Header: afxwin.h