NavigationPane.IsCollapsed property (Outlook)

Returns or sets a Boolean value that determines whether the navigation pane is collapsed. Read/write.

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

See also

NavigationPane Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.