Skip to content

Latest commit

 

History

History
51 lines (29 loc) · 1.16 KB

Word.Shape.Hyperlink.md

File metadata and controls

51 lines (29 loc) · 1.16 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Shape.Hyperlink property (Word)
vbawd10.chm161481705
vbawd10.chm161481705
Word.Shape.Hyperlink
bd69df23-a1b0-cdce-64a4-b0b6046e96d1
06/08/2017
medium

Shape.Hyperlink property (Word)

Returns a Hyperlink object that represents the hyperlink associated with a Shape object. Read-only.

Syntax

expression.Hyperlink

expression A variable that represents a Shape object.

Remarks

If there is no hyperlink associated with the specified shape, an error occurs. In this case, use the Add method for the Hyperlinks collection to add a hyperlink to the specified shape. The following example shows how to do this.

ActiveDocument.Hyperlinks.Add Selection.Shapes(1), "https://www.microsoft.com"

Example

This example displays the address for the hyperlink for the first shape in the active document.

MsgBox ActiveDocument.Shapes(1).Hyperlink.Address

See also

Shape Object

[!includeSupport and feedback]