ComboBox_GetCueBannerText macro (commctrl.h)

Gets the cue banner text displayed in the edit control of a combo box. Use this macro or send the CB_GETCUEBANNER message explicitly.

Syntax

void ComboBox_GetCueBannerText(
   hwnd,
   lpwText,
   cchText
);

Parameters

hwnd

Type: HWND

A handle to the combo box.

lpwText

Type: LPWSTR

A pointer to a Unicode string buffer that receives the cue banner text. The calling application is responsible for allocating the memory for the buffer. The buffer size must be equal to the length of the cue banner string in WCHARs, plus 1—for the terminating NULL WCHAR.

cchText

Type: int

The size of the buffer pointed to by lpwText in WCHARs.

Return value

None

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Target Platform Windows
Header commctrl.h

See also

Combo Box Features