add Methode
add(cell_name)
Fügt der Sammlung einen Kommentar hinzu.
Kehrt zurück
Comment Objektindex.
def add(self, cell_name):
...
Parameter | Typ | Beschreibung |
---|---|---|
cell_name | str | Cell Name. |
Beispiel
commentIndex2 = comments.add("B2")
comment2 = comments[commentIndex2]
comment2.note = "Second note."
comment2.font.name = "Times New Roman"
add(row, column)
Fügt der Sammlung einen Kommentar hinzu.
Kehrt zurück
Comment Objektindex.
def add(self, row, column):
...
Parameter | Typ | Beschreibung |
---|---|---|
row | int | Cell Zeilenindex. |
column | int | Cell Spaltenindex. |
Beispiel
commentIndex1 = comments.add(0, 0)
comment1 = comments[commentIndex1]
comment1.note = "First note."
comment1.font.name = "Times New Roman"
Siehe auch
- Modul aspose.cells
- Klasse Comment
- Klasse CommentCollection