Item

CommentCollection indexer (1 of 3)

Comment belirtilen dizindeki öğe.

public Comment this[int index] { get; }
ParametreTanı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


CommentCollection indexer (2 of 3)

Comment belirtilen hücredeki öğe.

public Comment this[string cellName] { get; }
ParametreTanım
cellNameHü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


CommentCollection indexer (3 of 3)

Comment belirtilen satır dizinindeki ve sütun dizinindeki öğe.

public Comment this[int row, int column] { get; }
ParametreTanım
rowSatır indeksi.
columnSü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