CommentCollection

CommentCollection

Overview

CommentCollection is a class in Aspose.Cells FOSS for Java.

Collection of cell comments on a worksheet.

Properties

NameTypeAccessDescription
countintRead

Methods

SignatureDescription
getCount()int
get(index: int)CommentReturns the comment at the given A1-style cell name, or null if none.
get(cellName: String)CommentReturns the comment at the given A1-style cell name, or null if none.
add(row: int, column: int)CommentAdds a comment at the given zero-based row/column.
add(cellName: String)CommentAdds 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).

See Also