Scope of class variables

In my class’s constructor, I’d like to create a few variables whose values persist across computed properties and in throughout the different methods of the class. However when I dim my variables, they’re only created within the scope of the Constructor method and are then discarded. I understand I need to dim my variables at the class level, but where and how do I do that?

Thanks in advance!

Create properties within the class and access them from the Constructor. Do not use Dim for those properties.

Ah, gotcha. Thanks!

Sorta related question… Is there any way to do that by typing rather than clicking around in the IDE?

And if you have properties you need to save across all instances of your classes you can use a “Shared Property”

Other than using the keyboard shortcuts, no.