Notes
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Returns a Hyperlinks collection that represents all the hyperlinks in the specified document. Read-only.
Syntax
expression .Hyperlinks
expression A variable that represents a Document object.
Remarks
For information about returning a single member of a collection, see Returning an Object from a Collection.
Example
This example displays the target address of the second hyperlink in Home.doc.
If Documents("Home.doc").Hyperlinks.Count >= 2 Then
MsgBox Documents("Home.doc").Hyperlinks(2).Name
End If
This example displays the name of every hyperlink in the active document that includes the word "Microsoft" in its address.
For Each aHyperlink In ActiveDocument.Hyperlinks
If InStr(LCase(aHyperlink.Address), "microsoft") <> 0 Then
MsgBox aHyperlink.Name
End If
Next aHyperlink