método add
add(self, cell_name)
Agrega un comentario a la colección.
Devoluciones
Índice de objeto Comment
.
def add(self, cell_name):
...
Parámetro | Tipo | Descripción |
---|---|---|
cell_name | str | Cell nombre. |
Ejemplo
commentIndex2 = comments.add("B2")
comment2 = comments[commentIndex2]
comment2.note = "Second note."
comment2.font.name = "Times New Roman"
add(self, row, column)
Agrega un comentario a la colección.
Devoluciones
Índice de objeto Comment
.
def add(self, row, column):
...
Parámetro | Tipo | Descripción |
---|---|---|
row | int | Índice de fila Cell. |
column | int | Índice de columna Cell. |
Ejemplo
commentIndex1 = comments.add(0, 0)
comment1 = comments[commentIndex1]
comment1.note = "First note."
comment1.font.name = "Times New Roman"
Ver también
- módulo
aspose.cells
- clase
Comment
- clase
CommentCollection