ccPortalApplicationPool.Items
- Former user (Deleted)
Owned by Former user (Deleted)
Dez. 15, 2016
1 min read
Loading data...
Parameter
Items[Item : Variant] : TccPortalApplication;
Beschreibung
Über die Items Eigenschaft kann auf alle Anwendungsobjekte des Pools zugegriffen werden. Item kann dabei der technische Name oder die fortlaufende Id innerhalb von Items der Anwendung sein.
Siehe auch ccPortalApplicationPool.Count.
Beispiel
for i:=0 to ccPortalApplicationPool.Count-1 do begin AppObject := ccPortalApplicationPool.Items[i]; end;
procedure ShowApplications; begin ccScriptEngine.Log(ccLog_Info,'ShowApplications'); for i:=0 to ccPortalApplicationPool.Count-1 do begin ccScriptEngine.Log(ccLog_Info,ccPortalApplicationPool.Items[i].Name); end; end;