Not "Diming" a property of class ...

How do I do this? I have a property in a module called

AmArray of Class type rowItemClass

It is equal to One row of a single dimension of an array. Since it is a property I cannot write

Dim AmArray as New rowItemClass

This property is also Nil because I haven’t constructed it. If otherwise I assign a rowItemClass to AmArray then it’s not Nil.
How do I construct this without a Dim and New or assigning a rowItemClass?

Never mind. I had the wrong class in code and the analyzer couldn’t tell me that needed info.

ArManip.AmArray = New RowDataClass(kCols)