TaskViewList Property

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

Example

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

Sub SeeAllViews()

    Dim Temp As Variant
    Dim TaskViewNames As String
    
    For Each Temp In ActiveProject.TaskViewList
        TaskViewNames = TaskViewNames & vbCrLf & Temp
    Next Temp
    
    MsgBox TaskViewNames
    
End Sub

Applies to | Project Object, Projects Collection Object

See Also | CurrentView Property | ReportList Property | ResourceViewList Property | TaskFilterList Property | TaskTableList Property | ViewList Property