COMBOBOXINFO (Compact 2013)

3/28/2014

This structure contains combo box status information.

Syntax

typedef struct tagCOMBOBOXINFO {
  DWORD cbSize;
  RECT  rcItem;
  RECT  rcButton;
  DWORD stateButton;
  HWND  hwndCombo;
  HWND  hwndItem;
  HWND  hwndList;
} COMBOBOXINFO, *PCOMBOBOXINFO, *LPCOMBOBOXINFO;

Members

  • cbSize
    Specifies the size, in bytes, of the structure. The caller must set this to sizeof(COMBOBOXINFO).
  • rcItem
    RECT structure that specifies the coordinates of the edit box.
  • rcButton
    RECT structure that specifies the coordinates of the button that contains the drop-down arrow.
  • stateButton
    Unsupported.
  • hwndCombo
    Handle to the combo box.
  • hwndItem
    Handle to the edit box.
  • hwndList
    Handle to the drop-down list.

Requirements

Header

winuser.h

See Also

Reference

Combo Box Structures
CB_GETCOMBOBOXINFO