Описание ключевого слова
$tagNMCBEENDEDIT
Contains information about the conclusion of an edit operation within a ComboBoxEx control
Global Const $tagNMCBEENDEDIT = $tagNMHDR & ";bool fChanged;int NewSelection;wchar szText[260];int Why"
Параметры
$tagNMHDR | Структура $tagNMHDR, содержащая информацию об уведомительном сообщении |
fChanged |
Indicating whether the contents of the control's edit box have changed |
NewSelection |
The zero-based index of the item that will be selected after completing the edit operation This value can be $CB_ERR if no item will be selected |
szText |
A zero-terminated string that contains the text from within the control's edit box |
Why |
The action that generated the $CBEN_ENDEDIT notification message This value can be one of the following: $CBENF_DROPDOWN - The user activated the drop-down list $CBENF_ESCAPE - The user pressed ESC $CBENF_KILLFOCUS - The edit box lost the keyboard focus $CBENF_RETURN - The user completed the edit operation by pressing ENTER |