title | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | |
---|---|---|---|---|---|---|
Selection.Tasks property (Project) |
project-server |
|
8f58ea8e-a3a1-f5aa-ad5d-6447fe777453 |
06/08/2017 |
medium |
Gets a Tasks collection representing the tasks in the selection. Read-only Tasks.
expression. Tasks
expression A variable that represents a Selection object.
The following example displays the name of every task in the selection.
Sub TaskNames()
Dim T As Task, Names As String
For Each T In ActiveSelection.Tasks
Names = Names & T.Name & vbCrLf
Next T
MsgBox Names
End Sub
[!includeSupport and feedback]