LeftPane Property
Applies To
Binder object.
Description
True if the left pane of the Binder window is visible. The left pane, also called the Binder pane, includes the icons for all the sections in the binder. Read/write Boolean.
Remarks
If this property is False, the Binder pane of the binder isn't visible, but a button that you can use to display the Binder pane is available.
See Also
DisplayLeftPaneAndButton property.
Example
This example uses the Open method to open the binder Binder2.obd. The example adds a new Word document to the binder, and it makes Binder pane visible.
Set myBinder = CreateObject("Binder1.Binder")
With myBinder
.Open "binder2.obd"
.Visible = True
.Sections.Add Type:="Word.Document"
.LeftPane = False
End With