Add
İçindekiler
[
Saklamak
]Add(int, int)
Koleksiyona bir yorum ekler.
public int Add(int row, int column)
Parametre | Tip | Tanım |
---|---|---|
row | Int32 | Hücre satırı dizini. |
column | Int32 | Hücre sütun dizini. |
Geri dönüş değeri
Comment
nesne indeksi.
Örnekler
[C#]
int commentIndex1 = comments.Add(0, 0);
Comment comment1 = comments[commentIndex1];
comment1.Note = "First note.";
comment1.Font.Name = "Times New Roman";
Ayrıca bakınız
- class CommentCollection
- ad alanı Aspose.Cells
- toplantı Aspose.Cells
Add(string)
Koleksiyona bir yorum ekler.
public int Add(string cellName)
Parametre | Tip | Tanım |
---|---|---|
cellName | String | Hücre adı. |
Geri dönüş değeri
Comment
nesne indeksi.
Örnekler
[C#]
int commentIndex2 = comments.Add("B2");
Comment comment2 = comments[commentIndex2];
comment2.Note = "Second note.";
comment2.Font.Name = "Times New Roman";
Ayrıca bakınız
- class CommentCollection
- ad alanı Aspose.Cells
- toplantı Aspose.Cells