Comment

Overview

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

Represents a cell comment (note).

Properties

NameTypeAccessDescription
rowintReadZero-based row index of the cell this comment is anchored to.
columnintReadZero-based column index of the cell this comment is anchored to.
authorStringRead
noteStringRead
visiblebooleanRead
widthintReadComment box width in pixels (minimum 1).
heightintReadComment box height in pixels (minimum 1).

Methods

SignatureDescription
getRow()intZero-based row index of the cell this comment is anchored to.
getColumn()intZero-based column index of the cell this comment is anchored to.
getAuthor()String
setAuthor(author: String)
getNote()String
setNote(note: String)
isVisible()boolean
setVisible(visible: boolean)
getWidth()intComment box width in pixels (minimum 1).
setWidth(width: int)
getHeight()intComment box height in pixels (minimum 1).
setHeight(height: int)

See Also