Share via


LB_SETHORIZONTALEXTENT (Compact 2013)

3/28/2014

This message is sent by an application to set the width, in pixels, by which a list box can be scrolled horizontally (the scrollable width). If the width of the list box is smaller than this value, the horizontal scroll bar horizontally scrolls items in the list box. If the width of the list box is equal to or greater than this value, the horizontal scroll bar is hidden.

Syntax

LB_SETHORIZONTALEXTENT wParam = (WPARAM) cxExtent; 
    lParam = 0;

Parameters

  • cxExtent
    Specifies the number of pixels by which the list box can be scrolled.
  • lParam
    Not used.

Return Value

None.

Remarks

To respond to the LB_SETHORIZONTALEXTENT message, the list box must have been defined with the WS_HSCROLL style.

Requirements

Header

winuser.h

See Also

Reference

List Box Messages
LB_GETHORIZONTALEXTENT