Panes Object

Outlook Developer Reference

Contains the panes displayed by the specified Explorer.

Remarks

Use the Panes property to return the Panes collection object from an Explorer object.

Use the Item method to retrieve a specific pane.

For Microsoft Outlook 2000 and later, the Shortcuts pane is the only pane that you can access through the Panes object.

Example

The following Visual Basic for Applications (VBA) example retrieves the Panes object from an Explorer object.

Visual Basic for Applications
  Set myPanes = myExplorer.Panes

The following example retrieves the OutlookBarPane object representing the Shortcuts pane.

Visual Basic for Applications
  Set myOLBarPane = myExplorer.Panes.Item("OutlookBar")

See Also