Name
Watch Object
Synopsis
Path: Application -- Watches - Watch
|
Object |
Methods |
Properties |
|
Watch |
|
|
|
Watches |
|
|
The Excel XP Watch window toolbar is a very simple, yet useful tool. It enables the user to view the contents of a cell even when the portion of the worksheet that contains the cell is not visible. Figure G-2 shows the Watch Window Toolbar.
![]() |
The Watch object implements the Watch Window programmatically.
The Watches property of the Application object returns a Watches collection that contains all of the open Watch objects. The Watch object itself has only one really useful property—the Source property, which specifies the cell to watch. The Watch object has only one method—Delete, which deletes the watch.
To illustrate, the watch in Figure G-2 can be created in either of the following ways:
Dim wa As Watch
Set wa = Application.Watches.Add("A1")
Set wa = Application.Watches.Add(Range("A1"))Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access
