- VBA Automation for Excel 2019 Cookbook
- Mike Van Niekerk
- 359字
- 2021-06-11 18:16:33
Using the Object Browser in the VBA Editor
This recipe covers usage of the Object Browser in the VBA Editor. The name says it all; the Object Browser lets you browse through the objects available to you.
In later recipes, we will look into the autocompletion of our code. For instance, when you type the name of an object in the code window and type a dot, a context menu appears with a list of actions you can choose from:

Figure 3.9 – The context menu with available library options
The green icons are methods, including cutting, pasting, and clearing contents. The other icons are properties. You can, in other words, choose methods or properties here, or use the Object Browser, as described hereafter.
Getting ready
Make sure that a blank workbook is active in Excel.
How to do it…
- Activate the VBA Editor by pressing Alt + F11.
- With the Editor active, press F2 to activate the Object Browser. You can also do this by clicking on View | Object Browser:
Figure 3.10 – The Object Browser
- The drop-down list in the top left-hand corner, just under the title bar, contains a list of all the object libraries that are currently available. Figure 3.10 displays the Excel libraries.
- Just below that, a second drop-down list lets you enter a search string. In this example, I searched for all Excel objects that deal with open.
- The object library now displays everything that contains the text open. If you want to know more about Close, for instance, click on that object and press F1 for more information.
- There is also the Auto List Members feature. It provides a list of properties and methods as you type. Figure 3.11 shows an example of this for the worksheets collection:

Figure 3.11 – The Auto List Members option
How it works…
The Object Browser is a tool in the VBA Editor that lets you browse through the objects available to you.
The Auto List Members feature provides a list of properties and methods as you type. It eliminates some typing, and also ensures that the property or method is spelled correctly.
- Learn Blockchain Programming with JavaScript
- Full-Stack Vue.js 2 and Laravel 5
- C++ 從入門到項目實踐(超值版)
- Elasticsearch for Hadoop
- Oracle Exadata專家手冊
- Hands-On Natural Language Processing with Python
- Hadoop 2.X HDFS源碼剖析
- 硬件產品設計與開發:從原型到交付
- Android移動應用開發項目教程
- Tableau Dashboard Cookbook
- Java程序設計教程
- Mastering Python
- 程序員面試金典(第6版)
- Getting Started with the Lazarus IDE
- Android項目實戰:博學谷