title | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | |
---|---|---|---|---|---|---|
Project.TaskFilterList property (Project) |
project-server |
|
303b49c8-cfc3-f4d6-197a-a4dfc130ee85 |
06/08/2017 |
medium |
Gets a List object representing all task filters in the project. Read-only List.
expression. TaskFilterList
expression A variable that represents a Project object.
The following example lists all the task filters in the active project.
Sub SeeAllFilters()
Dim Temp As Variant
Dim TaskFilterNames As String
For Each Temp In ActiveProject.TaskFilterList
TaskFilterNames = TaskFilterNames & vbCrLf & Temp
Next Temp
MsgBox TaskFilterNames
End Sub
[!includeSupport and feedback]