CommentCollection.Item
Contents
[
Hide
]CommentCollection indexer (1 of 3)
Gets the Comment
element at the specified index.
public Comment this[int index] { get; }
Parameter | Description |
---|---|
index | The zero based index of the element. |
Return Value
The element at the specified index.
Examples
[C#]
Comment comment3 = comments[0];
comment3.Note = "Three note.";
See Also
- class Comment
- class CommentCollection
- namespace Aspose.Cells
- assembly Aspose.Cells
CommentCollection indexer (2 of 3)
Gets the Comment
element at the specified cell.
public Comment this[string cellName] { get; }
Parameter | Description |
---|---|
cellName | Cell name. |
Return Value
The element at the specified cell.
Examples
[C#]
Comment comment4 = comments["B2"];
comment4.Note = "Four note.";
See Also
- class Comment
- class CommentCollection
- namespace Aspose.Cells
- assembly Aspose.Cells
CommentCollection indexer (3 of 3)
Gets the Comment
element at the specified row index and column index.
public Comment this[int row, int column] { get; }
Parameter | Description |
---|---|
row | Row index. |
column | Column index. |
Return Value
The element at the specified cell.
Examples
[C#]
Comment comment5 = comments[1,1];
comment5.Note = "Five note.";
See Also
- class Comment
- class CommentCollection
- namespace Aspose.Cells
- assembly Aspose.Cells