OutlookBarStorage.Groups Property (Outlook)
Returns an OutlookBarGroups object representing the set of groups in the Shortcuts pane. Read-only.
Syntax
expression .Groups
expression A variable that represents an OutlookBarStorage object.
Example
The following Microsoft Visual Basic for Applications (VBA) example displays the number of groups in the Shortcuts pane.
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