Share via


Application.EditHyperlink Method

Project Developer Reference

Edits the hyperlink of the selected assignment, resource, or task.

Syntax

expression.EditHyperlink(Name, Address, SubAddress, ScreenTip)

expression   A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
Name Optional String The name of the hyperlink as it appears in the Hyperlink field.
Address Optional String The address of the target document.
SubAddress Optional String A location within the target document.
ScreenTip Optional String The ScreenTip text for the hyperlink.

Return Value
Boolean

Remarks

Using the EditHyperlink method without specifying any arguments displays the Edit Hyperlink dialog box.

Example
The following example first creates a hyperlink in the Gantt Chart view and then change the name to MyHyperLink.

Visual Basic for Applications
  Sub Edit_Hyperlink()
 
    ViewApply Name:="&Gantt Chart"
    SelectRow Row:=2, RowRelative:=False
    InsertHyperlink Name:="http://MSDN", Address:="http://msdn.microsoft.com/", SubAddress:="", ScreenTip:=""
    
    EditHyperlink Name:="MyHyperLink"
End Sub

See Also