Hallo,
Hier mal kurz mein Beispielobject:
Delphi-Quellcode:
Type A = record
Date1 : byte;
Date2 : byte;
Date3 : array of B;
end;
Type B = record
Date1 : byte;
Date2 : byte;
end;
Type Test = class
private
FData = array of A;
procedure FUpdateBinA(IndexofA : integer;IndexofB: integer; AData :B);
public
property UpdateBinA[IndexofA : integer;IndexofB: integer] : read FReadBinA write FUpdateBinA;
end;
Ich habe nun folgendes Problem:
Man erstelle Object Test, welches z.B. FData von der Länge 10 hat.
Nun erstelle ich ein Record vom Type B.
Jetzt möchte ich Date3 in FData von Test an einer beliebingen Stelle ändern, und zwar über die Property UpdateBinA;
Das Problem das ich jetzt habe ist das der zwei Indizes:
das hier funktioniert nicht:
var Data : B; .... Test.UpdateBinA[0,0] := Data;
Was mache ich falsch, bzw. wo ist hier der Denkfehler, bei einem Index geht es schließlich auch!
LG Marco