I am writing a VBA class and trying to create a property which allows to set the value of an array item through assignment (=
operator).
Something similar to this: https://msdn.microsoft.com/en-us/library/aa259714(v=vs.60).aspx
So the signature will be like : object.PropertyName(index) = string
Is it possible in VBA? If yes, then can you please explain how.
Thanks!!