add方法
add(cell_name)
向集合添加评论。
返回
Comment 对象索引。
def add(self, cell_name):
...
范围 | 类型 | 描述 |
---|---|---|
cell_name | str | Cell 名称。 |
例子
commentIndex2 = comments.add("B2")
comment2 = comments[commentIndex2]
comment2.note = "Second note."
comment2.font.name = "Times New Roman"
add(row, column)
向集合添加评论。
返回
Comment 对象索引。
def add(self, row, column):
...
范围 | 类型 | 描述 |
---|---|---|
row | int | Cell 行索引。 |
column | int | Cell 列索引。 |
例子
commentIndex1 = comments.add(0, 0)
comment1 = comments[commentIndex1]
comment1.note = "First note."
comment1.font.name = "Times New Roman"