Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 802 Bytes

Project.Task.Resources.md

File metadata and controls

41 lines (25 loc) · 802 Bytes
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Task.Resources property (Project)
project-server
Project.Task.Resources
72f4535f-39f1-81eb-7400-47fbca9cccd4
06/08/2017
medium

Task.Resources property (Project)

Gets a Resources collection that contains the resources assigned to the task. Read-only Resources.

Syntax

expression. Resources

expression A variable that represents a Task object.

Example

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]