Instance.PropertyArray.delete()

Signature

void delete (PropertyArray arr, int index)

Domain

action

Description

Deletes the array element in arr located at index and shifts any subsequent elements to the left (subtracts one from their indices).

Parameters

NameTypeDescription
arrPropertyArrayA PropertyArray to delete an element from.
indexintThe index in the PropertyArray arr to delete.

Returns

None.

Cautions

none

Example


inst.arr[0]=111;
inst.arr[1]=222;;
inst.arr[2]=333;
Instance.PropertyArray.delete (inst.arr, 1);

Result is: concept.intArrayProperty contains: {111, 333}