System.Classes.TDataModule.AfterConstruction

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure AfterConstruction; override;

C++

virtual void __fastcall AfterConstruction();

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.Classes.pas
System.Classes.hpp
System.Classes TDataModule

Description

Generates an OnCreate event.

AfterConstruction is called after the data module's constructor has finished. Do not call it explicitly in applications.

TDataModule overrides AfterConstruction to generate an OnCreate event when OldCreateOrder is false.

See Also