Vcl.StdCtrls.TCustomCombo.OnSelect

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnSelect: TNotifyEvent read FOnSelect write FOnSelect;

C++

__property System::Classes::TNotifyEvent OnSelect = {read=FOnSelect, write=FOnSelect};

Properties

Type Visibility Source Unit Parent
event protected
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls TCustomCombo

Description

Occurs when the user selects a string in the drop-down list.

Write an OnSelect event handler to respond when the user changes the selected item in the drop-down list. OnSelect occurs after the selection has changed and the Text property reflects the new item.

See Also