Share via


TaskFilterList Property

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

Example

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

Applies to | Project Object, Projects Collection Object

See Also | CurrentFilter Property | ResourceFilterList Property | TaskTableList Property | TaskViewList Property