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

See also

OutlookBarStorage Object

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.