add方法

add(cell_name)

向集合添加评论。

返回

Comment 对象索引。

def add(self, cell_name):
    ...
范围类型描述
cell_namestrCell 名称。

例子


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):
    ...
范围类型描述
rowintCell 行索引。
columnintCell 列索引。

例子


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

也可以看看