Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 1.09 KB

Project.Application.EditClearHyperlink.md

File metadata and controls

49 lines (31 loc) · 1.09 KB
title keywords f1_keywords ms.service api_name ms.assetid ms.date ms.localizationpriority
Application.EditClearHyperlink method (Project)
vbapj.chm1316
vbapj.chm1316
project-server
Project.Application.EditClearHyperlink
386e9e73-5c65-0baf-2125-4dbb50675eb1
06/08/2017
medium

Application.EditClearHyperlink method (Project)

Clears the Hyperlink, Hyperlink Address, Hyperlink SubAddress, and HyperlinkHREF fields of the selected assignment, resource, or task.

Syntax

expression. EditClearHyperlink

expression A variable that represents an Application object.

Return value

Boolean

Example

The following example first creates a hyperlink in the Gantt Chart view and then clears it.

Sub EditClear_Hyperlink() 
 
 'Activate Gantt Chart view 
 ViewApply Name:="&Gantt Chart" 
 SelectRow Row:=2, RowRelative:=False 
 InsertHyperlink Name:="https://MSDN", Address:="https://msdn.microsoft.com/", SubAddress:="", ScreenTip:="" 
 
 EditClearHyperlink 
End Sub

[!includeSupport and feedback]