This is a very basic set of 2 classes to produce a CustomTags object that can take an Access Control object from a form and store an internal dictionary intended to use string keys to store string values for that tag.
The ControlTags and ControlTag currently use early binding with the Scripting.Dictionary object which requires a reference in your project to the Microsoft Scripting Runtime library.
In addition, I used the RubberDuckVBA add-in to use the ‘@DefaultMember annotation to be able to make the syntax for accessing the tags very succinct. This requires you to install the RubberDuckVBA add in, run code inspections and run the fix tool for the two default member entries which will update the classes internally with the default member properties for the module.
Here is an example of the usage:
Since yesterday I renamed the first test I had written via RubberDuckVBA unit tests to more specifically describe what it does and added a second test. I am including the code of the entire test module for completeness, scroll to the last two Test Methods to see the actual tests:
And now here are the two class modules: