Returns a PbHlinkTargetType constant that represents the type of hyperlink. Read-only.
PbHlinkTargetType can be one of these PbHlinkTargetType constants. |
pbHlinkTargetTypeEmail |
pbHlinkTargetTypeFirstPage |
pbHlinkTargetTypeLastPage |
pbHlinkTargetTypeNextPage |
pbHlinkTargetTypeNone |
pbHlinkTargetTypePageID |
pbHlinkTargetTypePreviousPage |
pbHlinkTargetTypeURL |
expression.TargetType
expression Required. An expression that returns one of the objects in the Applies To list.
This example verifies that the specified hyperlink is a URL and, if it is, sets the hyperlink display text and address. This example assumes there is at least one shape on the first page of the active publication.
Sub SetHyperlinkTextToDisplay()
With ActiveDocument.Pages(1).Shapes(1) _
.TextFrame.TextRange.Hyperlinks.Item(1)
If .TargetType = pbHlinkTargetTypeURL Then
.TextToDisplay = "Microsoft Office Web Site"
.Address = "http://microsoft.com/office/"
End If
End With
End Sub