Moin Dax,
dies scheint aber keine Wirkung zu haben, denn wenn ich folgendes habe:
Delphi-Quellcode:
type
TBase = class(TCollectionItem)
private
fString: string;
published
property AString: string read fString write fString;
end;
TDescendant = class(TBase)
private
property AString;
end;
und eine instanz von TDescendant erzeuge, kann ich immernoch auf "AString" zugreifen obwohls ja im private ist