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