Add
Inhalt
[
Ausblenden
]Add(int, int)
Fügt der Sammlung einen Kommentar hinzu.
public int Add(int row, int column)
Parameter | Typ | Beschreibung |
---|---|---|
row | Int32 | Zellenzeilenindex. |
column | Int32 | Zellspaltenindex. |
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
- class CommentCollection
- namensraum Aspose.Cells
- Montage Aspose.Cells
Add(string)
Fügt der Sammlung einen Kommentar hinzu.
public int Add(string cellName)
Parameter | Typ | Beschreibung |
---|---|---|
cellName | String | Zellenname. |
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
- class CommentCollection
- namensraum Aspose.Cells
- Montage Aspose.Cells