FormComboBoxControl.selectionChange Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates that the user has changed the selected item in the combo box control.
public:
virtual int selectionChange();
public virtual int selectionChange ();
abstract member selectionChange : unit -> int
override this.selectionChange : unit -> int
Public Overridable Function selectionChange () As Integer
Returns
true if the event was processed successfully; otherwise, false.
Remarks
The following example shows how the selectionChange method can be overridden to display an Infolog message when the user changes the selected item in the combo box control.
public int selectionChange()
{
int ret;
info("The selection has changed.");
ret = super();
return ret;
}