Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 901 Bytes

Project.Resource.HyperlinkAddress.md

File metadata and controls

43 lines (28 loc) · 901 Bytes
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Resource.HyperlinkAddress property (Project)
project-server
Project.Resource.HyperlinkAddress
44de3c24-ff9d-49dc-d942-8167a73b9ef6
03/05/2019
medium

Resource.HyperlinkAddress property (Project)

Gets or sets the URL or UNC path of a document. Read/write String.

Syntax

expression.HyperlinkAddress

expression A variable that represents a Resource object.

Example

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]