Share via


Project.ResourceFilterList Property

Project Developer Reference

Returns a List object representing all resource filters in the active project. Read-only Object.

Syntax

expression.ResourceFilterList

expression   A variable that represents a Project object.

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

Visual Basic for Applications
  Sub SeeAllResFilters()
Dim Temp As Variant
Dim ResFilterNames As String

For Each Temp In ActiveProject.<strong class="bterm">ResourceFilterList</strong>
    ResFilterNames = ResFilterNames &amp; vbCrLf &amp; Temp
Next Temp

MsgBox ResFilterNames

End Sub

See Also