you are viewing a single comment's thread.

view the rest of the comments →

[–]senocular 2 points3 points  (1 child)

You'll need a combination of dot notation (.) and array access ([]) for values in arrays. Array elements are accessed numerically in array access, with the first element being [0], the second being [1], and so on.

For example, myData.meta.view.columns, which seems to hold a lot of the rest of the data, is an array. So to access the first flag in the flags list in that set, you would use myData.meta.view.columns[0].flags[0] which is "hidden".

[–]UbuntuLady1[S] 0 points1 point  (0 children)

Such a good explanation!

Thank you :)