Item
İçindekiler
[
Saklamak
]CommentCollection indexer (1 of 3)
Comment
belirtilen dizindeki öğe.
public Comment this[int index] { get; }
Parametre | Tanım |
---|---|
index | Öğenin sıfır tabanlı dizini. |
Geri dönüş değeri
Belirtilen dizindeki öğe.
Örnekler
[C#]
Comment comment3 = comments[0];
comment3.Note = "Three note.";
Ayrıca bakınız
- class Comment
- class CommentCollection
- ad alanı Aspose.Cells
- toplantı Aspose.Cells
CommentCollection indexer (2 of 3)
Comment
belirtilen hücredeki öğe.
public Comment this[string cellName] { get; }
Parametre | Tanım |
---|---|
cellName | Hücre adı. |
Geri dönüş değeri
Belirtilen hücredeki öğe.
Örnekler
[C#]
Comment comment4 = comments["B2"];
comment4.Note = "Four note.";
Ayrıca bakınız
- class Comment
- class CommentCollection
- ad alanı Aspose.Cells
- toplantı Aspose.Cells
CommentCollection indexer (3 of 3)
Comment
belirtilen satır dizinindeki ve sütun dizinindeki öğe.
public Comment this[int row, int column] { get; }
Parametre | Tanım |
---|---|
row | Satır indeksi. |
column | Sütun indeksi. |
Geri dönüş değeri
Belirtilen hücredeki öğe.
Örnekler
[C#]
Comment comment5 = comments[1,1];
comment5.Note = "Five note.";
Ayrıca bakınız
- class Comment
- class CommentCollection
- ad alanı Aspose.Cells
- toplantı Aspose.Cells