CB_GETEDITSEL (Windows CE 5.0)

Send Feedback

This message is sent by an application to get the starting and ending character positions of the current selection in the edit control of a combo box.

CB_GETEDITSELwParam=(WPARAM)(LPDWORD)lpdwStart;lParam=(LPARAM)(LPDWORD)lpdwEnd;

Parameters

  • lpdwStart
    Long pointer to a 32-bit value that receives the starting position of the selection. This parameter can be set to NULL.
  • lpdwEnd
    Long pointer to a 32-bit value that receives the ending position of the selection. This parameter can be set to NULL.

Return Values

The return value is a zero-based 32-bit value with the starting position of the selection in the low-order word and with the ending position of the first character after the last selected character in the high-order word.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Winuser.h.

See Also

Combo Boxes Messages | SendMessage | CB_SETEDITSEL

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.