Instance.Reflection.setPropertyArrayValue()

Signature

boolean setPropertyArrayValue(Concept instance, String name, int index, Object value)

Domain

ACTION, BUI

Description

Given the concept instance and property name, set the value of a PropertyArray at index to the value passed.

Parameters

NameTypeDescription
instanceConceptthe concept instance
nameStringThe name of the propertyArray
indexintThe position in the propertyArray
valueObjectThe new value, the type has to be matched the property type.

Returns

TypeDescription
booleantrue if property is set to new value, false otherwise. e.g. mismatched type, no such property exception.

Cautions

none