| Delphi .NET (2) Database (71) Delphi IDE (90) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (280) |
When are properties set at construction time?
Properties are updated with the design time value after the constructor fires.
To trap the value during initialization of the component, override Loaded.
First call inherited Loaded, because it fixes component's references to
other components.
Comments:
|