Xojo2025R1.1: how to declare class property that is 2D string array?

I would like to have 2 dimensional array of strings that would be a class property, the size (number of rows) needs to be done dynamically in the code. I have tried to do it but I am having problem with the declaration part of class property of 2D array since the Type in IDE does not allow to enter (, ).

Is it even possible to have class property declared like that?

The dimensions go in the name field, the type will just be string.

If that fails, use (-1,-1).

1 Like

Thank you, the Name m2DArray(-1,-1) with Type String is not generating any errors.