1 | Objects may provide a default property. When the object is being used without the property being specified by name, it is assumed by default. |
2 | |
3 | An object can be specifically qualified by mentioning its entire hierarchy tree. |
4 | Eg Application.Documents(3). |
5 | VBA uses the active object when an object isn't qualified. |
6 | |
7 | The With ... .End with statement lets you use the properties and methods of a specific object in a single block. |
8 | |
9 | The Set statement can be used to create an object variable to refer to a specific object. |