Vcl.Grids.TInplaceEdit.WndProc

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure WndProc(var Message: TMessage); override;

C++

virtual void __fastcall WndProc(Winapi::Messages::TMessage &Message);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TInplaceEdit

Description

Supplements the inherited method to add special processing to some Windows messages.

WndProc is the first method of a control that receives Windows messages.

WndProc for TInplaceEdit passes focus events on to the grid. It calls the inherited method for all other Windows messages. WndProc converts mouse clicks to double clicks when the grid receives the first click within the double-click time period.

See Also