HyperlinkCollection类
HyperlinkCollection类
封装 Hyperlink
个对象的集合。
HyperlinkCollection 类型公开以下成员:
属性
属性 | 描述 |
---|---|
capacity | 获取或设置数组列表可包含的元素数量。 |
方法
方法 | 描述 |
---|---|
add(self, first_row, first_column, total_rows, total_columns, address) | 将超链接添加到指定单元格或单元格区域。 |
add(self, cell_name, total_rows, total_columns, address) | 将超链接添加到指定单元格或单元格区域。 |
add(self, start_cell_name, end_cell_name, address, text_to_display, screen_tip) | 将超链接添加到指定单元格或单元格区域。 |
copy_to(self, array) | 将整个数组列表复制到兼容的一维数组列表,从目标数组列表的开头开始。 |
copy_to(self, index, array, array_index, count) | 从目标数组列表的指定索引开始,将数组列表中的一系列元素复制到兼容的一维数组列表中。 |
index_of(self, item, index) | 搜索指定的对象并返回从指定索引延伸到最后一个元素的数组列表中元素范围内第一个出现的从零开始的索引。 |
index_of(self, item, index, count) | 搜索指定的对象并返回从指定索引开始并包含指定数量元素的数组列表中元素范围内第一次出现的从零开始的索引。 |
last_index_of(self, item) | 搜索指定的对象并返回整个数组列表中最后一次出现的从零开始的索引。 |
last_index_of(self, item, index) | 搜索指定的对象并返回从第一个元素延伸到指定索引的数组列表中元素范围内的最后一个出现的从零开始的索引。 |
last_index_of(self, item, index, count) | 搜索指定的对象并返回包含指定数量的元素并以指定索引结束的数组列表中元素范围内的最后一个出现的从零开始的索引。 |
binary_search(self, item) | 使用默认比较器在整个排序数组列表中搜索元素,并返回该元素从零开始的索引。 |
例子
from aspose.cells import Workbook
# Instantiating a Workbook object
workbook = Workbook()
# Obtaining the reference of the newly added worksheet by passing its sheet index
worksheet = workbook.worksheets[0]
# Get Hyperlinks Collection
hyperlinks = worksheet.hyperlinks
# Adding a hyperlink to a URL at "A1" cell
hyperlinks.add("A1", 1, 1, "http://www.aspose.com")
# Saving the Excel file
workbook.save("book1.xls")