com.aspose.cells
Class Hyperlink

java.lang.Object
    extended by com.aspose.cells.Hyperlink

public class Hyperlink 
extends java.lang.Object

Encapsulates the object that represents a hyperlink.

Example:

//Instantiating a Workbook object
Workbook workbook = new Workbook();
//Adding a new worksheet to the Workbook object
workbook.getWorksheets().add();
//Obtaining the reference of the newly added worksheet by passing its sheet index
Worksheet worksheet = workbook.getWorksheets().get(0);
//Adding a hyperlink to a URL at "A1" cell
worksheet.getHyperlinks().add("A1", 1, 1, "http://www.aspose.com");
//Saving the Excel file
workbook.save("C:\\book1.xls");

Property Getters/Setters Summary
java.lang.StringgetAddress()
voidsetAddress(java.lang.String value)
           Represents the address of a hyperlink.
CellAreagetArea()
           Gets the range of hyperlink.
java.lang.StringgetScreenTip()
voidsetScreenTip(java.lang.String value)
           Returns or sets the ScreenTip text for the specified hyperlink.
java.lang.StringgetTextToDisplay()
voidsetTextToDisplay(java.lang.String value)
           Represents the text to be displayed for the specified hyperlink. The default value is the address of the hyperlink.
 

Property Getters/Setters Detail

getAddress/setAddress

public java.lang.String getAddress() / public void setAddress(java.lang.String value)
Represents the address of a hyperlink.

getTextToDisplay/setTextToDisplay

public java.lang.String getTextToDisplay() / public void setTextToDisplay(java.lang.String value)
Represents the text to be displayed for the specified hyperlink. The default value is the address of the hyperlink.

getArea

public CellArea getArea()
Gets the range of hyperlink.

getScreenTip/setScreenTip

public java.lang.String getScreenTip() / public void setScreenTip(java.lang.String value)
Returns or sets the ScreenTip text for the specified hyperlink.

See Also:
          Aspose.Cells Documentation - the home page for the Aspose.Cellss Product Documentation.
          Aspose.Cells Support Forum - our preferred method of support.