Item

CommentCollection indexer (1 of 3)

Ruft die abComment Element am angegebenen Index.

public Comment this[int index] { get; }
ParameterBeschreibung
indexDer nullbasierte Index des Elements.

Rückgabewert

Das Element am angegebenen Index.

Beispiele


[C#]
Comment comment3 = comments[0];
comment3.Note = "Three note.";

Siehe auch


CommentCollection indexer (2 of 3)

Ruft die abComment Element in der angegebenen Zelle.

public Comment this[string cellName] { get; }
ParameterBeschreibung
cellNameZellenname.

Rückgabewert

Das Element in der angegebenen Zelle.

Beispiele


[C#]
Comment comment4 = comments["B2"];
comment4.Note = "Four note.";

Siehe auch


CommentCollection indexer (3 of 3)

Ruft die abComment Element am angegebenen Zeilenindex und Spaltenindex.

public Comment this[int row, int column] { get; }
ParameterBeschreibung
rowZeilenindex.
columnSpaltenindex.

Rückgabewert

Das Element in der angegebenen Zelle.

Beispiele


[C#]
Comment comment5 = comments[1,1];
comment5.Note = "Five note.";

Siehe auch