Page 1 of 1

[Implemented] multidimension in structure fields

Posted: Fri Nov 21, 2003 9:26 pm
by Psychophanta
It would be very good if would be possible to do this:

Code: Select all

Structure pp
  e.l
  d.w[2,4]
  r.l[8,8,3]
EndStructure
(See dynamic array in structure 'Array Test(1,2,3)')

Posted: Sat Nov 22, 2003 1:00 pm
by freedimension
Yes.

But as long as it's not implemented, you can do like this

Code: Select all

Structure Column
  a.l[3]
EndStructure
Structure Matrix
  a.Column[3]
EndStructure