NavigationPane.IsCollapsed Property (Outlook)
Returns or sets a Boolean value that determines whether the Navigation Pane is collapsed. Read/write.
Version Information
Version Added: Outlook 2007
Syntax
expression .IsCollapsed
expression A variable that represents a NavigationPane object.
Example
The following Visual Basic for Applications (VBA) example collapses the Navigation Pane after hiding all of the modules contained by it.
Sub CollapseAndHideAllModules()
Dim objPane As NavigationPane
' Get the NavigationPane object for the
' currently displayed Explorer object.
Set objPane = Application.ActiveExplorer.NavigationPane
' Set the DisplayedModuleCount property to
' hide all modules contained by the
' Navigation Pane.
objPane.DisplayedModuleCount = 0
' Set the IsCollapsed property to
' collapse the Navigation Pane.
objPane.IsCollapsed = True
End Sub