关键字参考

$tagNMCBEENDEDIT

Contains information about the conclusion of an edit operation within a ComboBoxEx control

Global Const $tagNMCBEENDEDIT = $tagNMHDR & ";int fChanged;int NewSelection;char Text[1024];int Why"

 

参数

$tagNMHDR Contains information about a notification message
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
Text 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

 

注意/说明

None.

 

相关