Explorer.Panes Property

Outlook Developer Reference

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/Visual Basic for Applications (VBA) example adds a group named "Marketing" as the second group in the Shortcuts pane.

Visual Basic for Applications
  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