Add
محتويات
[
يخفي
]Add(int, int)
يضيف تعليقًا إلى المجموعة .
public int Add(int row, int column)
معامل | يكتب | وصف |
---|---|---|
row | Int32 | فهرس صف الخلية. |
column | Int32 | فهرس عمود الخلية. |
قيمة الإرجاع
Comment
فهرس الكائن.
أمثلة
[C#]
int commentIndex1 = comments.Add(0, 0);
Comment comment1 = comments[commentIndex1];
comment1.Note = "First note.";
comment1.Font.Name = "Times New Roman";
أنظر أيضا
- class CommentCollection
- مساحة الاسم Aspose.Cells
- المجسم Aspose.Cells
Add(string)
يضيف تعليقًا إلى المجموعة .
public int Add(string cellName)
معامل | يكتب | وصف |
---|---|---|
cellName | String | اسم الخلية. |
قيمة الإرجاع
Comment
فهرس الكائن.
أمثلة
[C#]
int commentIndex2 = comments.Add("B2");
Comment comment2 = comments[commentIndex2];
comment2.Note = "Second note.";
comment2.Font.Name = "Times New Roman";
أنظر أيضا
- class CommentCollection
- مساحة الاسم Aspose.Cells
- المجسم Aspose.Cells