Instance.PropertyArray.clear()

Signature

void clear (PropertyArray arr)

Domain

action

Description

Removes all elements from arr.

Parameters

NameTypeDescription
arrPropertyArrayA PropertyArray to clear all elements from.

Returns

None.

Cautions

none

Example


Instance.PropertyArray.setInt (concept.intArrayProperty, 1, 111);
Instance.PropertyArray.setInt (concept.intArrayProperty, 2, 222);
Instance.PropertyArray.setInt (concept.intArrayProperty, 3, 333);
Instance.PropertyArray.clear (concept.intArrayProperty);

Result is: concept.intArrayProperty is empty