CListBox::GetSelItems
在多重选择指定选定项的项编号列表框的整数加载缓冲区。
int GetSelItems(
int nMaxItems,
LPINT rgIndex
) const;
参数
nMaxItems
指定项目数字将放入缓冲区选定的最大项数。rgIndex
指定指向足够大缓冲区为 nMaxItems指定的整数的数目。
返回值
缓冲区中的项的实际数目。如果列表框为单选列表框,则返回值是 LB_ERR。
示例
// Get the indexes of all the selected items.
int nCount = m_myODListBox.GetSelCount();
CArray<int,int> aryListBoxSel;
aryListBoxSel.SetSize(nCount);
m_myODListBox.GetSelItems(nCount, aryListBoxSel.GetData());
// Dump the selection array.
AFXDUMP(aryListBoxSel);
要求
标头: afxwin.h