TccFastArray.Rows
- Merve Yurdakul
Owned by Merve Yurdakul
Juni 23, 2016
1 min read
Loading data...
Parameter
Integer;
Beschreibung
Rows gibt die Anzahl der Zeilen im Array zurück.
Beispiel
for i:=0 to VarArray.Columns-1 do begin for j:=0 to VarArray.Rows-1 do begin ShowMessage(VarArray.Data[i,j]); end; end