Libraries & objects
About Archicad and BIMcloud libraries, their management and migration, objects and other library parts, etc.

How I can edit one array element in UI_INFIELD?

Anonymous
Not applicable
I have the parameter as array of the 10 text strings - MyStrArray
I need to edit any of elements of the array. For example - first element (MyStrArray[1]).
I try to write in user interface secrion:
UI_INFIELD MyStrArray[1], ...
Not work
UI_INFIELD "MyStrArray[1]", ...
System says that variable not exist.

2 REPLIES 2
Anonymous
Not applicable
You can use ui_infield{3}

ui_infield{3} MyStrArray[1], 62,20, 342, 20
Anonymous
Not applicable
Thank you!)