Hyperlink

Overview

Hyperlink is a class in Aspose.Cells FOSS for Java.

Represents a hyperlink in a worksheet.

This class provides 9 methods for working with Hyperlink objects in Java programs. Available methods include: delete, getAddress, getArea, getLinkType, getScreenTip, getTextToDisplay, setAddress, setScreenTip, setTextToDisplay. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: address, area, linkType, screenTip, textToDisplay.

Properties

NameTypeAccessDescription
areaStringReadGets the cell area covered by this hyperlink.
addressStringReadGets or sets the address of the hyperlink.
linkTypeTargetModeTypeReadGets the link type based on the address.
screenTipStringReadGets or sets the screen tip text.
textToDisplayStringReadGets or sets the text displayed for the hyperlink.

Methods

SignatureDescription
getArea()StringGets the cell area covered by this hyperlink.
getAddress()StringGets or sets the address of the hyperlink.
setAddress(value: String)Sets the address.
getLinkType()TargetModeTypeGets the link type based on the address.
getScreenTip()StringGets or sets the screen tip text.
setScreenTip(value: String)Sets the screen tip.
getTextToDisplay()StringGets or sets the text displayed for the hyperlink.
setTextToDisplay(value: String)Sets the text to display.
delete()Deletes this hyperlink.

See Also