Hyperlink

Overview

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

Represents a hyperlink in a worksheet.

This class provides 2 methods for working with Hyperlink objects in Python programs. Available methods include: __init__, delete. All public members are accessible to any Python application after installing the Aspose.Cells FOSS for Python package. Properties: address, range, screen_tip, sub_address, text_to_display, type.

Properties

NameTypeAccessDescription
range``Read/WriteGets the cell reference for this hyperlink.
address``Read/WriteGets or sets the external target URL.
sub_address``Read/WriteGets or sets the internal location within the workbook.
text_to_display``Read/WriteGets or sets the text displayed for the hyperlink.
screen_tip``Read/WriteGets or sets the tooltip text shown when hovering over the hyperlink.
type``ReadGets the type of hyperlink.

Methods

SignatureDescription
__init__(range_address, address, sub_address, text_to_display, screen_tip)Initializes a new Hyperlink instance.
delete()Marks this hyperlink for deletion.

See Also