add método

add(cell_name)

Añade un comentario a la colección.

Devoluciones

Comment índice de objetos.

def add(self, cell_name):
    ...
ParámetroTipoDescripción
cell_namestrCell nombre.

Ejemplo


commentIndex2 = comments.add("B2")
comment2 = comments[commentIndex2]
comment2.note = "Second note."
comment2.font.name = "Times New Roman"

add(row, column)

Añade un comentario a la colección.

Devoluciones

Comment índice de objetos.

def add(self, row, column):
    ...
ParámetroTipoDescripción
rowintCell índice de fila.
columnintCell índice de columna.

Ejemplo


commentIndex1 = comments.add(0, 0)
comment1 = comments[commentIndex1]
comment1.note = "First note."
comment1.font.name = "Times New Roman"

Ver también