Explorer.Panes property (Outlook)

Returns a Panes collection object representing the panes displayed by the specified explorer.

Syntax

expression.Panes

expression A variable that represents an Explorer object.

Example

This Microsoft Visual Basic for Applications (VBA) example adds a group named "Marketing" as the second group in the Shortcuts pane.

Sub AddGroup() 
 Dim myolBar As Outlook.OutlookBarPane 
 
 Set myolBar = Application.ActiveExplorer.Panes.Item("OutlookBar") 
 myolBar.Contents.Groups.Add "Sales", myolBar.Contents.Groups.Count + 1 
End Sub

See also

Explorer 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.