FMX.Memo.Style.TStyledMemo.MouseUp

From RAD Studio API Documentation
Jump to: navigation, search

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.Memo.Style.pas
FMX.Memo.Style.hpp
FMX.Memo.Style TStyledMemo

Description

Internally executed while a mouse button is released over the surface of the TMemo control.

The Button specifies the mouse button that has just been released. The Shift parameter specifies which shift keys--SHIFT, CTRL, ALT, and CMD (only for Mac)--were down when the mouse button was released. The X and Y parameters specify the position of the mouse cursor on the screen.

MouseUp updates a TMemo internal flag.

See Also