title | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | |
---|---|---|---|---|---|---|
Task.Resources property (Project) |
project-server |
|
72f4535f-39f1-81eb-7400-47fbca9cccd4 |
06/08/2017 |
medium |
Gets a Resources collection that contains the resources assigned to the task. Read-only Resources.
expression. Resources
expression A variable that represents a Task object.
The following example displays the name of each resource assigned to the selected task.
Sub ResourceNames()
Dim R As Resource
For Each R In ActiveCell.Task.Resources
MsgBox R.Name
Next R
End Sub
[!includeSupport and feedback]