Vcl.Grids.TInplaceEdit.DoMouseWheel
Delphi
function DoMouseWheel(Shift: TShiftState; WheelDelta: Integer;
MousePos: TPoint): Boolean; override;
C++
DYNAMIC bool __fastcall DoMouseWheel(System::Classes::TShiftState Shift, int WheelDelta, const System::Types::TPoint &MousePos);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | protected | Vcl.Grids.pas Vcl.Grids.hpp |
Vcl.Grids | TInplaceEdit |
Description
Delegates mouse wheel messages to the associated grid.
TInplaceEdit overrides the inherited DoMouseWheel method so that it can pass any mouse wheel messages on to the grid specified by the Grid property. This causes the grid's OnMouseWheel event handler to execute even though the inplace edit control has focus.