Add

Add(int, int)

Fügt der Sammlung einen Kommentar hinzu.

public int Add(int row, int column)
ParameterTypBeschreibung
rowInt32Zellenzeilenindex.
columnInt32Zellspaltenindex.

Rückgabewert

Comment Objektindex.

Beispiele


[C#]
int commentIndex1 = comments.Add(0, 0);
Comment comment1 = comments[commentIndex1];
comment1.Note = "First note.";
comment1.Font.Name = "Times New Roman";

Siehe auch


Add(string)

Fügt der Sammlung einen Kommentar hinzu.

public int Add(string cellName)
ParameterTypBeschreibung
cellNameStringZellenname.

Rückgabewert

Comment Objektindex.

Beispiele


[C#]
int commentIndex2 = comments.Add("B2");
Comment comment2 = comments[commentIndex2];
comment2.Note = "Second note.";
comment2.Font.Name = "Times New Roman";

Siehe auch