User`s guide

Utility Library Classes
Dim Index1(1 To 2) As Integer
Dim Index2(1 To 2) As Integer
Index1(1) = 1
Index1(2) = 1
Index2(1) = 3
Index2(2) = 2
x(Index1, Index2, 2, "red") = 0.5
The last statement resolves to
x(1, 1, 3, 2, 2, "red") = 0.5
Thefieldnamemustbethelastindexinthelist. Thefollowingstatement
produces an error:
y = x("blue", 1, 2)
Field names are case sensitive.
Property NumberOfFields As Long
The read-only NumberOfFields property returns the number of fields in the
structure array.
Property NumberOfDims As Long
The read-only NumberOfDims property returns the number of dimensions
in the structure array.
Property Dims As Variant
The read-only Dims property returns an array of length NumberOfDims that
contains the size of each dim ension of the structure array.
Property FieldNames As Variant
The read-only FieldNames property returns an array of length
NumberOfFields that contains the field names of the elements of the structure
array.
C-21