Item
Inhalt
[
Ausblenden
]CommentCollection indexer (1 of 3)
Ruft die abComment
Element am angegebenen Index.
public Comment this[int index] { get; }
Parameter | Beschreibung |
---|---|
index | Der nullbasierte Index des Elements. |
Rückgabewert
Das Element am angegebenen Index.
Beispiele
[C#]
Comment comment3 = comments[0];
comment3.Note = "Three note.";
Siehe auch
- class Comment
- class CommentCollection
- namensraum Aspose.Cells
- Montage Aspose.Cells
CommentCollection indexer (2 of 3)
Ruft die abComment
Element in der angegebenen Zelle.
public Comment this[string cellName] { get; }
Parameter | Beschreibung |
---|---|
cellName | Zellenname. |
Rückgabewert
Das Element in der angegebenen Zelle.
Beispiele
[C#]
Comment comment4 = comments["B2"];
comment4.Note = "Four note.";
Siehe auch
- class Comment
- class CommentCollection
- namensraum Aspose.Cells
- Montage Aspose.Cells
CommentCollection indexer (3 of 3)
Ruft die abComment
Element am angegebenen Zeilenindex und Spaltenindex.
public Comment this[int row, int column] { get; }
Parameter | Beschreibung |
---|---|
row | Zeilenindex. |
column | Spaltenindex. |
Rückgabewert
Das Element in der angegebenen Zelle.
Beispiele
[C#]
Comment comment5 = comments[1,1];
comment5.Note = "Five note.";
Siehe auch
- class Comment
- class CommentCollection
- namensraum Aspose.Cells
- Montage Aspose.Cells