Vcl.DBLookup.TDBLookupList.MouseUp

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure MouseUp(Button: TMouseButton; Shift: TShiftState;  X, Y: Integer); override;

C++

DYNAMIC void __fastcall MouseUp(System::Uitypes::TMouseButton Button, System::Classes::TShiftState Shift, int X, int Y);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.DbLookup.pas
Vcl.DBLookup.hpp
Vcl.DBLookup TDBLookupList

Description

Responds to the mouse button being released over the lookup list.

The MouseUp method responds to the mouse button being released over the lookup list. As the user unpresses a mouse button while within the lookup list, this method is called repeatedly. MouseUp generates an OnMouseUp event.

The Button parameter specifies which mouse button was unpressed. The Shift parameter indicates which keys (SHIFT, CTRL, and ALT) were down when the mouse button was unpressed. X and Y indicate the new position of the mouse pointer.

See Also