Class Module
Property procedures
Property Get - Returns the value of a property.
Property Let - Sets the value of a property. – Let x = 3
Property Set - Sets the value of an object property. – Set objThing = New
Thing
•Property procedures are public by default. •The Property Get declaration
must use arguments with the same name and data type and less one number as
the arguments in the Property Let procedure. •