Skip to main content
Skip table of contents

CollDelete()

CollDelete() – Collectionitem löschen

Die Funktion löscht aus einem aCollection Objekt das aIndex Objekt.

Parameter

Beschreibung

aCollection:O

Collection-Objekt

aIndex:N

Index-Zahl

Rückgabewert


keiner

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)),
CollDelete(oCollection, 2),
WriteLn(CollCount(oCollection)),

Weitere Verknüpfungen


JavaScript errors detected

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

If this problem persists, please contact our support.