CommentCollection class

CommentCollection class

Encapsulates a collection of Comment objects.

The CommentCollection type exposes the following members:

Properties

PropertyDescription
capacityGets or sets the number of elements that the array list can contain.

Methods

MethodDescription
add_threaded_comment(self, row, column, text, author)Adds a threaded comment.
add_threaded_comment(self, cell_name, text, author)Adds a threaded comment.
get_threaded_comments(self, row, column)Gets the threaded comments by row and column index.
get_threaded_comments(self, cell_name)Gets the threaded comments by cell name.
add(self, row, column)Adds a comment to the collection.
add(self, cell_name)Adds a comment to the collection.
get(self, row, column)Add API for Python Via .Net.since this[int, int] is unsupported
get(self, index)Gets the Comment element at the specified index.
get(self, cell_name)Gets the Comment element at the specified cell.
remove_at(self, cell_name)Removes the comment of the specific cell.
remove_at(self, row, column)Removes the comment of the specific cell.
copy_to(self, array)Copies the entire array list to a compatible one-dimensional array list, starting at the beginning of the target array list.
copy_to(self, index, array, array_index, count)Copies a range of elements from the array list to a compatible one-dimensional array list, starting at the specified index of the target array list.
index_of(self, item, index)Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the array list that extends from the specified index to the last element.
index_of(self, item, index, count)Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the array list that starts at the specified index and contains the specified number of elements.
last_index_of(self, item)Searches for the specified object and returns the zero-based index of the last occurrence within the entire array list.
last_index_of(self, item, index)Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that extends from the first element to the specified index.
last_index_of(self, item, index, count)Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that contains the specified number of elements and ends at the specified index.
binary_search(self, item)Searches the entire sorted array list for an element using the default comparer and returns the zero-based index of the element.

Example

from aspose.cells import Workbook

workbook = Workbook()
comments = workbook.worksheets[0].comments

See Also