Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 917 Bytes

Project.Project.ResourceViewList.md

File metadata and controls

44 lines (27 loc) · 917 Bytes
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Project.ResourceViewList property (Project)
project-server
Project.Project.ResourceViewList
d0acf85f-8a07-714d-614f-a18645177f40
06/08/2017
medium

Project.ResourceViewList property (Project)

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

Syntax

expression. ResourceViewList

expression A variable that represents a Project object.

Example

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

Sub SeeAllResViews() 
 
 Dim Temp As Variant 
 Dim ResViewNames As String 
 
 For Each Temp In ActiveProject.ResourceViewList 
 ResViewNames = ResViewNames & vbCrLf & Temp 
 Next Temp 
 
 MsgBox ResViewNames 
 
End Sub

[!includeSupport and feedback]