Share via


OutlookBarStorage.Groups Property

Outlook Developer Reference

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/Visual Basic for Applications (VBA) example displays the number of groups in the Shortcuts pane.

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

See Also