Change Properties Value Runtime

Hi,

How can i change integer in brackets ? I want to change “6” value in runtime.

MyProperty(6)

Regards.

Screen Shot 2024-02-27 at 14.33.50

Use the Add method:

top.Add(someValue)

Look up that method in the Arrays documentation.

(you can’t change 5 to 6, but you can change the array size at runtime)

Maybe:
https://documentation.xojo.com/api/language/arrays.html#arrays-resizeto

Ty.

Ty