ShapeRange.Hyperlink Property

Word Developer Reference

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

Syntax

expression.Hyperlink

expression   A variable that represents a ShapeRange object.

Remarks

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

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

See Also