Share via


Hyperlink.ScreenTip Property

PowerPoint Developer Reference

Returns or sets the ScreenTip text of a hyperlink. Read/write.

Syntax

expression.ScreenTip

expression   A variable that represents a Hyperlink object.

Return Value
String

Remarks

ScreenTip text appears, for example, when you save a presentation to HTML, view it in a Web browser, and rest the mouse pointer over a hyperlink. Some browsers may not support ScreenTips.

Example

This example sets the ScreenTip text for the first hyperlink.

Visual Basic for Applications
  ActivePresentation.Slides(1).Hyperlinks(1) _
    .ScreenTip = "Go to the Microsoft home page"

See Also