title | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | |
---|---|---|---|---|---|---|
Resource.HyperlinkAddress property (Project) |
project-server |
|
44de3c24-ff9d-49dc-d942-8167a73b9ef6 |
03/05/2019 |
medium |
Gets or sets the URL or UNC path of a document. Read/write String.
expression.HyperlinkAddress
expression A variable that represents a Resource object.
The following example adds a hyperlink to all tasks in the active project, including tasks in subprojects.
Sub AddHyperlink()
Dim T As Task
For Each T In ActiveProject.Tasks
If Not (T Is Nothing) Then
T.Hyperlink = "Microsoft"
T.HyperlinkAddress = "https://www.microsoft.com/"
End If
Next T
End Su
[!includeSupport and feedback]