API:Soap.SOAPDomConv.TSOAPDOMProcessor.AfterConstruction
Delphi
procedure AfterConstruction; override;
C++
virtual void __fastcall AfterConstruction(void);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | Soap.SOAPDomConv.pas Soap.SOAPDomConv.hpp |
Soap.SOAPDomConv | TSOAPDOMProcessor |
Description
Responds after the last constructor has executed.
Soap.SOAPDomConv.TSOAPDOMProcessor.AfterConstruction inherits from System.TObject.AfterConstruction. All content below this line refers to System.TObject.AfterConstruction.
Responds after the last constructor has executed.
AfterConstruction is called automatically after the object's last constructor has executed. Do not call it explicitly in your applications.
The AfterConstruction method implemented in TObject does nothing. Override this method when creating a class that performs an action after the object is created. For example, TCustomForm overrides AfterConstruction to generate an OnCreate event.