CommentCollection
Overview
CommentCollection is a class in Aspose.Cells FOSS for Java.
Collection of cell comments on a worksheet.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
count | int | Read |
Methods
| Signature | Description |
|---|---|
getCount() → int | |
get(index: int) → Comment | Returns the comment at the given A1-style cell name, or null if none. |
get(cellName: String) → Comment | Returns the comment at the given A1-style cell name, or null if none. |
add(row: int, column: int) → Comment | Adds a comment at the given zero-based row/column. |
add(cellName: String) → Comment | Adds a comment at the given A1-style cell reference. |
removeAt(index: int) | Removes the comment at the given cell reference (no-op if none). |
removeAt(cellName: String) | Removes the comment at the given cell reference (no-op if none). |