Vcl.ExtCtrls.TColorBox.OnCloseUp

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnCloseUp: TNotifyEvent read FOnCloseUp write FOnCloseUp;

C++

__property OnCloseUp;

Properties

Type Visibility Source Unit Parent
event published
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TColorBox

Description

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

Vcl.ExtCtrls.TColorBox.OnCloseUp inherits from Vcl.StdCtrls.TCustomCombo.OnCloseUp. All content below this line refers to Vcl.StdCtrls.TCustomCombo.OnCloseUp.

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