ich habe z.B so etwas:
Delphi-Quellcode:
CellContent: array of array of CellType;
...
for i:=0 to xyz do begin
SetLength(CellContent,i+1); //neue Zeile
SetLength(CellContent[i],FldCount); //neue Spalten FldCount ist variabel !!!!
end; // for
... wie bekomme ich jetzt die größe des arrays von zB.: CellContent[3]