Hyperlink clase

Encapsula el objeto que representa un hipervínculo.

El tipo Hyperlink expone los siguientes miembros:

Propiedades

PropiedadDescripción
addressRepresenta la dirección de un hipervínculo.
text_to_displayRepresenta el texto que se mostrará para el hipervínculo especificado. El valor predeterminado es la dirección del hipervínculo.
areaObtiene el rango del hipervínculo.
screen_tipDevuelve o establece el texto de información en pantalla para el hipervínculo especificado.
link_typeObtiene el tipo de vínculo.

Métodos

MétodoDescripción
deleteElimina este hipervínculo

Ejemplo

from aspose.cells import Workbook

# Instantiating a Workbook object
workbook = Workbook()
# Adding a new worksheet to the Workbook object
workbook.worksheets.add()
# Obtaining the reference of the newly added worksheet by passing its sheet index
worksheet = workbook.worksheets[0]
# Adding a hyperlink to a URL at "A1" cell
index = worksheet.hyperlinks.add("A1", 1, 1, "http://www.aspose.com")
# Getting a Hyperlink by index.
hyperlink = worksheet.hyperlinks[index]
# Setting display text of this hyperlink.
hyperlink.text_to_display = "Aspose"
# Saving the Excel file
workbook.save("book1.xls")

Ver también