Ich habe bisher folgendes geschrieben:
Delphi-Quellcode:
type
TSudokuKasten = class(TShape)
private
{ Private-Deklarationen }
protected
{ Protected-Deklarationen }
public
constructor Create (AOwner : TComponent); override;
destructor Destroy; override;
{ Public-Deklarationen }
published
property Caption : string read Text write SetText;
//property Font : TFont read write SetFont;
{ Published-Deklarationen }
end;
Doch bei der property Caption : string weis ich nicht, was ich bei write schreiben soll, weil Delphi 'write Text' nicht akzeptiert. Was tun?