Share via


InlineShape.Hyperlink Property

Word Developer Reference

Returns a Hyperlink object that represents the hyperlink associated with the specified inline shape. Read-only.

Syntax

expression.Hyperlink

expression   A variable that represents an InlineShape 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.

Visual Basic for Applications
  ActiveDocument.Hyperlinks.Add Selection.InlineShapes(1), "http://www.microsoft.com"

Example

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

Visual Basic for Applications
  MsgBox ActiveDocument.Shapes(1).Hyperlink.Address

See Also