CollCount()
CollCount() – Collectionanzahl
Die Funktion gibt die Anzahl der Objekte der aCollection zurück.
Parameter | Beschreibung |
---|---|
aCollection:O | Collection-Objekt |
Rückgabewert
Numerisch - Anzahl der CollectionItems
Beispiel
CODE
| oMemTable, oField, oCollection |
oMemTable := CreateObject("TMemCalcTable"),
oCollection := oMemTable.FieldsDefinition,
oField := CollAdd(oCollection),
oField.Name := 'POS1',
oField := CollAdd(oCollection),
oField.Name := 'POS2',
oField := CollAdd(oCollection),
oField.Name := 'POS3',
WriteLn(CollCount(oCollection)),