Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 934 Bytes

Project.Project.ResourceFilterList.md

File metadata and controls

44 lines (27 loc) · 934 Bytes
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Project.ResourceFilterList property (Project)
project-server
Project.Project.ResourceFilterList
d515691a-2f8c-ed61-4844-3a938c658847
06/08/2017
medium

Project.ResourceFilterList property (Project)

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

Syntax

expression. ResourceFilterList

expression A variable that represents a Project object.

Example

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

Sub SeeAllResFilters() 
 
 Dim Temp As Variant 
 Dim ResFilterNames As String 
 
 For Each Temp In ActiveProject.ResourceFilterList 
 ResFilterNames = ResFilterNames & vbCrLf & Temp 
 Next Temp 
 
 MsgBox ResFilterNames 
 
End Sub

[!includeSupport and feedback]