Vcl.StdCtrls.TCustomMemo.CreateWindowHandle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure CreateWindowHandle(const Params: TCreateParams); override;

C++

virtual void __fastcall CreateWindowHandle(const Vcl::Controls::TCreateParams &Params);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls TCustomMemo

Description

Creates a window based on the window-creation parameter record.

The CreateWnd method calls CreateWindowHandle to create the edit control window once it has been specified in the window-creation parameters. CreateWindowHandle creates the window by calling the CreateWindowEx API function, passing parameters from the record passed in the Params parameter. CreateWindowHandle overrides the inherited method to interpret the Caption in Params as the initial text rather than as the window caption.

See Also