Vcl.RibbonActnCtrls.TCustomRibbonComboBox.MouseMove

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure MouseMove(Shift: TShiftState; X: Integer; Y: Integer); override;

C++

DYNAMIC void __fastcall MouseMove(System::Classes::TShiftState Shift, int X, int Y);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.RibbonActnCtrls.pas
Vcl.RibbonActnCtrls.hpp
Vcl.RibbonActnCtrls TCustomRibbonComboBox

Description

Responds to the mouse moving over the control area.

MouseMove responds to the mouse moving over the control area. Shift indicates which shift keys (SHIFT, CTRL, or ALT) were down when the user moved the mouse. As the mouse cursor moves across a control, this method is called repeatedly. Each time it is called, it is with the new coordinates that reflect the continuous path of the mouse cursor across the screen real estate covered by the control's visual representation. In addition, MouseMove changes the color of the control to the active control's color.

See Also