Hyperlink.ScreenTip Property

Excel Developer Reference

Returns or sets the ScreenTip text for the specified hyperlink. Read/write String.

Syntax

expression.ScreenTip

expression   A variable that represents a Hyperlink object.

Remarks

After the document has been saved to a Web page, the ScreenTip text may appear (for example) when the mouse pointer is positioned over the hyperlink while the document is being viewed in a Web browser. Some Web browsers may not support ScreenTips.

Example

This example sets the screen tip for the first hyperlink on the active worksheet.

Visual Basic for Applications
  ActiveSheet.Hyperlinks(1).ScreenTip = "Return to the home page"

See Also