If I have a collection, say Cells
, and if referenced like so Cells[1,1]
it gives me an object of that collection but the member object doesn't have a certain property that the collection object has. Is there a way to call that property from the member? Like as follows, assuming StartPosition
is a property of the object class for the collection:
Cells[1,1].StartPosition
or maybe
Cells[1,1].ParentCollection.StartPosition