Note
Kailangan ng pahintulot para ma-access ang page na ito. Maaari mong subukang mag-sign in o magpalit ng mga direktoryo.
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang baguhin ang mga direktoryo.
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
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.