I have created a custom class in VBA, and it uses several private
properties that help the class fulfill its purpose internally. Most of these properties I will (likely) never need to see in any inspector. However, when I inspect an instance of my class in the locals or watch windows, all its properties appear, even these unnecessary helper properties. They tend to visually bury the useful properties that I want to inspect.
Is there a way to mark certain properties in my custom class so that they don't appear when inspecting an instance of the class in the locals or watch windows? Is there a setting in the editor that would allow me to hide these private
properties? Are there any tricks or hacks that can accomplish at least something similar?