Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 982 Bytes

Publisher.Hyperlinks.Item.md

File metadata and controls

42 lines (28 loc) · 982 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Hyperlinks.Item property (Publisher)
vbapb10.chm6881280
vbapb10.chm6881280
Publisher.Hyperlinks.Item
8d288fc6-9ded-5732-b972-6fa366ef31c3
06/08/2019
medium

Hyperlinks.Item property (Publisher)

Returns an individual object from a specified collection. Read-only.

Syntax

expression.Item (Index)

expression A variable that represents a Hyperlinks object.

Parameters

Name Required/Optional Data type Description
Index Required Long The number of the object to return.

Example

This example displays the address of the first hyperlink in shape one of the active publication.

MsgBox "Address of first hyperlink: " _ 
 & ActiveDocument.Pages(1).Shapes(1) _ 
 .TextFrame.TextRange.Hyperlinks.Item(1).Address

[!includeSupport and feedback]