Visible Property

Applies To

Binder object, Section object.

Description

True if the specified binder or section is visible. Read/write Boolean.

Remarks

When a Binder object is created by the CreateObject function or opened by the GetObject function, the Visible property is False. To make the binder visible, set the Visible property to True.

Hidden sections are included in the count for the Sections collection.

Example

This example opens Binder1.obd and makes it visible.

Set myBinder = GetObject("C:\Binder1.obd", "OfficeBinder.Binder")
myBinder.Visible = True