add_threaded_comment(self, row, column, text, author) | 添加线索注意事项。 |
add_threaded_comment(self, cell_name, text, author) | 添加线索注意事项。 |
get_threaded_comments(self, row, column) | 按行和列索引获取线程注意事项。 |
get_threaded_comments(self, cell_name) | 根据单元格名称获取线程注意事项。 |
add(self, row, column) | 向集合中添加注意事项。 |
add(self, cell_name) | 向集合中添加注意事项。 |
get(self, row, column) | 通过 .Net 添加 API for Python,因为 this[int, int] 不受支持 |
get(self, index) | 获取指定索引处的 Comment 元素。 |
get(self, cell_name) | 获取指定单元格处的 Comment 元素。 |
remove_at(self, cell_name) | 删除特定单元格的注释。 |
remove_at(self, row, column) | 删除特定单元格的注释。 |
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) | 使用默认比较器在整个排序数组列表中搜索元素,并返回该元素从零开始的索引。 |