CListBox::SelItemRange

Selects multiple consecutive items in a multiple-selection list box.

int SelItemRange( 
   BOOL bSelect, 
   int nFirstItem, 
   int nLastItem  
);

Parameters

  • bSelect
    Specifies how to set the selection. If bSelect is TRUE, the string is selected and highlighted; if FALSE, the highlight is removed and the string is no longer selected.

  • nFirstItem
    Specifies the zero-based index of the first item to set.

  • nLastItem
    Specifies the zero-based index of the last item to set.

Return Value

LB_ERR if an error occurs.

Remarks

Use this member function only with multiple-selection list boxes. If you need to select only one item in a multiple-selection list box — that is, if nFirstItem is equal to nLastItem — call the SetSel member function instead.

Example

// Select half of the items.
m_myODListBox.SelItemRange(TRUE, 0, m_myODListBox.GetCount()/2);

Requirements

Header: afxwin.h

See Also

Reference

CListBox Class

Hierarchy Chart

LB_SELITEMRANGE

CListBox::GetSelItems