cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Streamline your workflows and master BIM coordination! Program starts April 28!

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?

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
Not applicable
You can use ui_infield{3}

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