Delphi-Quellcode:
TFonts=class
private
FDateFont: TFont;
procedure SetDateFont(const Value: TFont);
public
constructor Create;
destructor Destroy;
published
property DateFont: TFont read FDateFont write SetDateFont;
end;
Eine Komponente wird von TComponent (oder einer anderen Komponente) abgeleitet, TFonts=class sieht unvollständig aus. Daher wird vermutlich nichts in die
DFM Datei geschrieben.