Skip to content

Latest commit

 

History

History
41 lines (24 loc) · 1.13 KB

Outlook.OutlookBarStorage.Groups.md

File metadata and controls

41 lines (24 loc) · 1.13 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
OutlookBarStorage.Groups property (Outlook)
vbaol11.chm372
vbaol11.chm372
Outlook.OutlookBarStorage.Groups
9b324d3d-3ab6-1e24-962f-19812b6b8ed0
06/08/2017
medium

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

[!includeSupport and feedback]