FMX.Layouts.TCustomScrollBox.MouseUp
Delphi
procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: Single); override;
C++
virtual void __fastcall MouseUp(System::Uitypes::TMouseButton Button, System::Classes::TShiftState Shift, float X, float Y);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
protected | FMX.Layouts.pas FMX.Layouts.hpp |
FMX.Layouts | TCustomScrollBox |
Description
Internally executed while a mouse button is released over the surface of this scroll box.
You can call MouseUp programmatically in applications to simulate a mouse button up event over this scroll box.
The Button
parameter specifies the mouse button that has just been released (for instance, TMouseButton.mbLeft
).
The Shift
parameter specifies the keyboard state (for instance, the CTRL
key pressed at the same time with the mouse click).
The X
and Y
parameters specify the position of the mouse cursor on the screen.