OutlookBarPane.Contents 属性 (Outlook)
返回指定的 Outlook 栏窗格中的 OutlookBarStorage 对象。 此为只读属性。
语法
expression。 Contents
表达 一个代表 OutlookBarPane 对象的变量。
示例
本 Microsoft Visual Basic for Applications 示例显示一条消息,列出 Outlook 面板中的组。
Sub ListGroups()
Dim myOlBar As Outlook.OutlookBarPane
Dim myOlGroups As Outlook.OutlookBarGroups
myMsg = "The groups in the Outlook Bar are:"
Set myOlBar = Application.ActiveExplorer.Panes.Item("OutlookBar")
Set myOlGroups = myOlBar.Contents.Groups
For x = 1 To myOlGroups.Count
myMsg = myMsg & Chr(13) & myOlGroups.Item(x)
Next x
MsgBox myMsg
End Sub
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。