طريقة 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"
أنظر أيضا
- وحدة aspose.cells
- فئة Comment
- فئة CommentCollection