About the author
It's been a long while since I've written a Delphi component.
As I'm writing yet another Delphi component, this time, on MacOS, I find myself having to grapple with how component persistence works in Delphi.
When the Delphi RTL is loading or storing an instance of a component on a form, it reads the path of each property.
If the property does not have any property information (no PropInfo: this happens when the property is not published or has no RTTI), the RTL then calls Instance.DefineProperties (where Instance is an instance of the component currently being created). If the property has property information (is published or has RTTI), it is automatically persisted. So if there is a call to Filer.DefineProperty with an existing published property, then the property will be persisted twice.
In the component where the DefineProperties method is overridden, typically something like the following is seen:
inherited DefineProperties(Filer); Filer.DefineProperty('SourcePoint', ReadSourcePoint, WriteSourcePoint, FShape = stComicCallout);
How to free more space on your home drive by redirecting the location for SDKs in RAD Studio
Learn the command line used to compile System.pas in Delphi
A method to design records so that they're allocated on a specific byte boundary, such as 16 bytes, 512 bytes, 4096 bytes, etc.
Learn why the map is cool in Go!