Referencing All Members of a Control Array?

Is there a way to reference all members of a control array at one time without looping through them individually?

For example, if you had 100 members in the array and you wanted to change the height of all of them, is there something equivalent to:

myControl(ALL).height = 50

rather than

for x = 0 to 49 myControl(x).height = 50 next x

nope…

and remember a “control set” is NOT an “array” of controls in the standard definition of an array… there is no UBOUND property for example

gotcha. Thanks!

And the indexes are not necessarily consecutive. There can be gaps.