Example:
//Instantiating a Workbook object
//Instantiating a Workbook object
$workbook = new cells\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 = $workbook->getWorksheets()->get(0);
//Adding a hyperlink to a URL at "A1" cell
$worksheet->getHyperlinks()->add("A1", 1, 1, "http://www.aspose.com");
| Property Getters/Setters Summary | ||
|---|---|---|
function | getAddress() | |
function | setAddress(value) | |
| Represents the address of a hyperlink. | ||
function | getArea() | |
| Gets the range of hyperlink. | ||
function | getLinkType() | |
| Gets the link type. The value of the property is TargetModeType integer constant. | ||
function | getScreenTip() | |
function | setScreenTip(value) | |
| Returns or sets the ScreenTip text for the specified hyperlink. | ||
function | getTextToDisplay() | |
function | setTextToDisplay(value) | |
| Represents the text to be displayed for the specified hyperlink. The default value is the address of the hyperlink. | ||
| Method Summary | ||
|---|---|---|
function | delete() | |
| Deletes this hyperlink | ||
| Property Getters/Setters Detail |
|---|
getAddress/setAddress : String | |
function getAddress() / function setAddress(value) | |
getTextToDisplay/setTextToDisplay : String | |
function getTextToDisplay() / function setTextToDisplay(value) | |
getArea : CellArea | |
function getArea() | |
getScreenTip/setScreenTip : String | |
function getScreenTip() / function setScreenTip(value) | |
getLinkType : Number | |
function getLinkType() | |
| Method Detail |
|---|
delete | |
function delete() | |