Outlook) (OutlookBarStorage.Groups 属性
返回一个 OutlookBarGroups 对象,该对象代表 快捷方式窗格中的组的集合。 此为只读属性。
语法
expression。 Groups
表达 一个代表 OutlookBarStorage 对象的变量。
示例
(VBA) 示例下面的 Microsoft Visual Basic for Applications 快捷方式窗格中显示组的数。
Sub CountOlBarGroups() Dim myOlBar As Outlook.OutlookBarPane Dim myCount As Integer Set myOlBar = Application.ActiveExplorer.Panes.Item("OutlookBar") myCount = myOlBar.Contents.Groups.Count MsgBox "There are " & myCount & " groups in the Shortcuts pane" End Sub
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。