I am reading a component from a stream and want to specify the Owner property.
var TComponent : comp;
stream.Seek(0, soFromBeginning);
comp := stream.ReadComponent(nil);
Who owns comp, and how can I change it? I was hoping the readComponent parameter would be the owner, but there seems to be something completely different!
Roddy source
share