Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 987 Bytes

Project.Project.ResourceGroupList.md

File metadata and controls

47 lines (30 loc) · 987 Bytes
title keywords f1_keywords ms.service api_name ms.assetid ms.date ms.localizationpriority
Project.ResourceGroupList property (Project)
vbapj.chm132565
vbapj.chm132565
project-server
Project.Project.ResourceGroupList
a64fe8c8-e75f-3cab-e77a-54fc6c1bf0a5
06/08/2017
medium

Project.ResourceGroupList property (Project)

Gets a List object representing the resource groups in the active project. Read-only List.

Syntax

expression. ResourceGroupList

expression A variable that represents a Project object.

Example

The following example lists all the resource filters in the active project.

Sub SeeAllResGroups() 
 
 Dim Temp As Variant 
 Dim ResGroupNames As String 
 
 For Each Temp In ActiveProject.ResourceGroupList 
 ResGroupNames = ResGroupNames & vbCrLf & Temp 
 Next Temp 
 
 MsgBox ResGroupNames 
 
End Sub

[!includeSupport and feedback]