Add

Add(int, int)

Koleksiyona bir yorum ekler.

public int Add(int row, int column)
ParametreTipTanım
rowInt32Hücre satırı dizini.
columnInt32Hü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


Add(string)

Koleksiyona bir yorum ekler.

public int Add(string cellName)
ParametreTipTanım
cellNameStringHü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