Skip to main content
Skip table of contents

CollItem()

CollItem() – Collectionitem

Die Funktion gibt das Objekt mit dem Index aIndex aus der Collection aCollection zurück.

Parameter

Beschreibung

aCollection:O

Collection-Objekt

aIndex:N

Index-Zahl

Rückgabewert


Objekt - CollectionItem

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(CollItem(oCollection, 2)),

Weitere Verknüpfungen


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.