Share via


LB_SETSEL (Compact 2013)

3/28/2014

This message is sent by an application to select a string in a multiple-selection list box.

Syntax

LB_SETSEL wParam = (WPARAM)(BOOL) fSelect; 
    lParam = (LPARAM)(UINT) index;

Parameters

  • fSelect
    Boolean that specifies how to set the selection. If set to TRUE, the string is selected and highlighted. If set to FALSE, the highlight is removed and the string is no longer selected.
  • index
    Zero-based index of the string to set. If index is -1, the selection is added to or removed from all strings, depending on the value of fSelect.

Return Value

LB_ERR indicates that an error has occurred.

Remarks

Use this message only with multiple-selection list boxes.

Requirements

Header

winuser.h

See Also

Reference

List Box Messages
LB_GETSEL
LB_SELITEMRANGE