Toolbars (Collection)

Member of:

Application object

Description:

Represents all toolbars in an application.

Tip:

All collections have the “Item(NameOrIndex)” method. This is the default method for all collections that returns collection items at a particular index or by name. Use brackets ([]) to represent calls to the Item (Method). For example, these statements are identical: myItem = Documents[1] myItem = Documents.Item(1) myItem = Documents["StartUp.bqy"] myItem = Documents.Item("StartUp.bqy")

Example:

This example shows how to conceal all toolbars in an application:

for(I = 1; I <= Application.Toolbars.Count;I++)
Application.Toolbars[I].Visible = false

Methods:

Item(Value As NameOrIndex) As Toolbar

Properties:

Read-only: Property Count As Number

Objects:

Standard, Formatting, Sections, Navigation, Paging