G
Guest
I have a Private Field in a Class Module that is a string dynamic array. (It
contains a list of part numbers containing letters.)
Is it possible to either -
1) Allow a procedure outside the Class Module to read the entire array
through a Get Property procedure.
2) Allow a procedure outside the Class Module to set the entire array using
a Let/Set Property procedure.
I know how to pass one value at a time through Get and Let, but is it
possible to pass the whole array at once through a Property procedure? I
would prefer not to expose the array (I would like to keep it Private), but I
suppose that is something I could fall back on.
contains a list of part numbers containing letters.)
Is it possible to either -
1) Allow a procedure outside the Class Module to read the entire array
through a Get Property procedure.
2) Allow a procedure outside the Class Module to set the entire array using
a Let/Set Property procedure.
I know how to pass one value at a time through Get and Let, but is it
possible to pass the whole array at once through a Property procedure? I
would prefer not to expose the array (I would like to keep it Private), but I
suppose that is something I could fall back on.