Wie kann ich in ner neuen Kompo ne Eingenschaft vom Typ TFont hinzufügen. Im grunde das gleiche wie die Eigenschaft "Font" beim Button oder nem Label. Bei mir klappt das nicht.
Immer wenn ich im
OI bei meiner Kompo die Font ändern will kommt das:
Zitat:
nil kann nicht zu TFont zugewiesen werden
Mein Sourcecode (Ausschnitte):
Delphi-Quellcode:
type TCSTyp = (tAdresse, tRechnung, tLieferung);
TCSAdressLabel = class(TCSQRRichText)
private
FUeberschriftFont:TFont;
public
constructor Create(AOwner:TComponent);override;
destructor Destroy;override;
published
property UeberschriftFont : TFont read FUeberschriftFont Write FUeberschriftFont;
end;