add method
add
Adds a comment to the collection.
Returns
Comment
object index.
def add(self, cell_name):
...
Parameter | Type | Description |
---|---|---|
cell_name | str | Cell name. |
Example
commentIndex2 = comments.add("B2")
comment2 = comments[commentIndex2]
comment2.note = "Second note."
comment2.font.name = "Times New Roman"
add
Adds a comment to the collection.
Returns
Comment
object index.
def add(self, row, column):
...
Parameter | Type | Description |
---|---|---|
row | int | Cell row index. |
column | int | Cell column index. |
Example
commentIndex1 = comments.add(0, 0)
comment1 = comments[commentIndex1]
comment1.note = "First note."
comment1.font.name = "Times New Roman"
See Also
- module
aspose.cells
- class
Comment
- class
CommentCollection