Vcl.Forms.TCustomForm.CreateWnd

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure CreateWnd; override;

C++

virtual void __fastcall CreateWnd();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TCustomForm

Description

Creates the form window.

CreateWnd is called when the form is created, and whenever a change to the form requires the window to be recreated. CreateWnd calls (indirectly) the CreateParams method to obtain the window creation parameters, and then calls CreateWindowHandle to direct Windows to create the underlying window for the form. It then initializes the newly-created window to reflect the property settings of the form.

See Also