Project.MapList property (Project)
Gets a List object representing the list of data maps in the project. Read-only List.
Syntax
expression. MapList
expression A variable that represents a Project object.
Example
The following example prints the list of data maps in the active project.
Sub TestMapList()
Dim lst As List
Dim numLists As Integer
Dim i As Integer
Set lst = ActiveProject.MapList
numLists = lst.Count
For i = 1 To numLists
Debug.Print lst.Item(i)
Next i
End Sub
Following is the default map list in Project:
Default task information
Task "Export Table" map
Resource "Export Table" map
Task list with embedded assignment rows
Task and resource PivotTable report
Top Level Tasks list
"Who Does What" report
Earned value information
Cost data by task
Compare to Baseline
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.