TccPortalApplicationObject.Count

Parameter

Integer;

Beschreibung

Count gibt die Anzahl an Objekten in Items zurück.

Beispiel

for i:=0 to MyObject.Count-1 do
begin
  MySubObject := MyObject.Items[i];
  // do something with MySubObject...
end;