NovWritePropValue

NovWritePropValue (Array,Obj,Prop,Type)
NovWritePropValue is used to write values to Item properties only and
not to static properties. Item properties contain data in 128-byte
segments. These segments are passed as an array of strings. If you are
passing binary data then build the binary data into the string array.
Any strings that have less than 128 bytes are padded with zeros.
Example:
AppendArray(Values,'123')
AppendArray(Values,'456')
AppendArray(Values,'789')
NovWritePropValue(Values,'TEST','WASTE',2)

