Window.ComboBoxExNotify Method (Typed) | |
A callback method that is invoked when a ComboBoxEx control sends a notification message
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD ComboBoxExNotify(
oControlNotifyEvent
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual ComboBoxExNotify(
Usual oControlNotifyEvent = default
)
Request Example
View SourceParameters
- oControlNotifyEvent (Optional)
- Type: Usual
An event that has the information about the notify event
Return Value
Type:
UsualRemarks Tip |
---|
Important! This is a callback method used by X#.
Normally, it should not be called in your application code.
|
Provide a method that is invoked when a ComboBoxEx control sends one of the following notification messages.
CBEN_INSERTITEM, CBEN_DELETEITEM, CBEN_DRAGBEGIN, CBEN_BEGINEDIT and CBEN_ENDEDIT
Currently this method contains only a message handler for the CBEN_ENDEDIT message,
which calls the Window:ComboBoxExEndEdit() method.
If you override this method to process the other messages, don’t forget to call SUPER: ComboBoxExNotify(oControlNotifyEvent) in the otherwise part.
See Also