title | keywords | f1_keywords | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|---|
Project.MapList property (Project) |
vbapj.chm132404 |
|
project-server |
|
b124f86e-fec6-ab92-93ff-5db4eff16892 |
06/08/2017 |
medium |
Gets a List object representing the list of data maps in the project. Read-only List.
expression. MapList
expression A variable that represents a Project object.
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
[!includeSupport and feedback]