add méthode
add(cell_name)
Ajoute un commentaire à la collection.
Retour
Comment indice d’objet.
def add(self, cell_name):
...
Paramètre | Taper | Description |
---|---|---|
cell_name | str | Cell nom. |
Exemple
commentIndex2 = comments.add("B2")
comment2 = comments[commentIndex2]
comment2.note = "Second note."
comment2.font.name = "Times New Roman"
add(row, column)
Ajoute un commentaire à la collection.
Retour
Comment indice d’objet.
def add(self, row, column):
...
Paramètre | Taper | Description |
---|---|---|
row | int | Cell index de ligne. |
column | int | Cell index de colonne. |
Exemple
commentIndex1 = comments.add(0, 0)
comment1 = comments[commentIndex1]
comment1.note = "First note."
comment1.font.name = "Times New Roman"
Voir également
- module aspose.cells
- classe Comment
- classe CommentCollection