Wo siehst du ne Property mit nem Parameter?
edit:
sry jetzt gesehen, dann halt
Delphi-Quellcode:
type
TAtest=class(TObject)
private
FIndex: Integer;
FFieldArray: Array[Integer] of Double;
function GetField(): Double;
protected
public
published
properyt FeldIndex: Integer read FIndex write FIndex;
property Feld: Double read GetField; //hier tritt der Fehler auf
end;
implementation
....
function TAtest.GetField():Double;
begin
if FIndex > -1 then
result := FFieldArray[FIndex];
end;