Hallo Sascha,
Du mußt für die neue Font-Eigenschaft eine Setter-Methode schreiben:
Delphi-Quellcode:
// in der Klassendeklaration
private
procedure SetMyFont (AFont: TFont);
published
property MyFont: TFont read FMyFont write SetMyFont;
// Implementierung
procedure TEChecker.SetMyFont (AFont: TFont);
begin
FMyFont.Assign (AFont);
end;
So sollte es funktionieren.
Gruß Hawkeye