Dictionary properties for python objects in objectscript
What would be the syntax for something like this
ws['A1'] = "blah"
I did try
set ws("A1") = "blah"
however that didn't work
Product version: IRIS 2022.1
What would be the syntax for something like this
ws['A1'] = "blah"
I did try
set ws("A1") = "blah"
however that didn't work
Could you explain a bit more, about what do you you want to achieve?
is just multilevel variable
if you have object in ws, with field A1, than
or
Using an excel python library inside objectscript (openpyxl)
This is an example from the documentation on this library
What i want to know is how to do the syntax on the 4th line in objectscript
well, in this case you may use method __setitem__ directly
Thanks, that appears to work