Vcl.StdCtrls.TCustomCombo.OnCloseUp

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnCloseUp: TNotifyEvent read FOnCloseUp write FOnCloseUp;

C++

__property System::Classes::TNotifyEvent OnCloseUp = {read=FOnCloseUp, write=FOnCloseUp};

Properties

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

Description

Occurs when the drop-down list closes up due to some user action.

The OnCloseUp event occurs when the drop-down list is closed. This happens when a user selects a value from the drop-down list or when a mouse click occurs outside of the list. Write an OnCloseUp event handler to implement special processing that needs to occur when the drop-down list closes up.

Note: An item is selected after the drop-down list is closed.

See Also